George Brooks

Results 9 issues of George Brooks

The error message occurred in the test: ``` namespace tests\Panther; use Symfony\Component\Panther\PantherTestCase; class MealTest extends PantherTestCase { public function testFoodAddAndRemove() { $client = static::createPantherClient(); $client->followRedirects(); $client->request('GET', '/meal/1095/edit'); ; Symfon $this->assertPageTitleContains('Edit...

In an attempt to use `assertSelectorWillNotContain` in a test of a change in data value I used `$this->assertSelectorWillNotContain("document.querySelector('#mealid').getAttribute('data-rte')", $rteCount);` In a Firefox console the command `document.querySelector('#mealid').getAttribute('data-rte')` returns an integer. In...

In a fresh installation of Symfony 4.3.4 and `mbo2olivier/mukadi-wordpress-bundle` per the documentation, launching the site results in the error shown in the title. Symfony profiler's `phpinfo()` shows `$_SERVER['APP_ENV'] =dev`. There...

**Expected behavior** Edit: I highly suspect that I'm scrambling terms and that the observable IP addresses of the default switch is unrelated to the IP address of the VM. But,...

After installing then removing "Dark Look And Feel Themes" in Netbeans 8.2 on Windows 10 not all effects are removed. Resetting Options, Appearance, Look and Feel to Windows did not...

In a Symfony 4.2 application using webpack, attempts to include highcharts resulted in a javascript error `Highcharts not defined` where the page source reads `var linechart = new Highcharts.Chart({`. My...

This PR adds the ability to send `config.yml` options to registration and profile forms. It also adds the ability to add business logic to registration and profile controllers. These controllers...

In [this fork](https://github.com/truckee/PUGXMultiUserBundle) there is a method to add an array of options to both registration and profile forms. Testing the method is, however, currently outside of my skill set....

It may be possible to enable custom user profile templates with the simple modification to Configuration.php as in the following excerpt: ``` ->children() ->arrayNode('profile') ->addDefaultsIfNotSet() ->children() ->arrayNode('form') ->addDefaultsIfNotSet() ->children() ->scalarNode('type')->defaultValue(null)->end()...