Alex

Results 225 issues of Alex

The `@Entity` annotation isn't mentioned in list of annotations, provided by this bundle on http://symfony.com/doc/master/bundles/SensioFrameworkExtraBundle/index.html#annotations-for-controllers page. The annotation itself is documented on https://symfony.com/doc/master/bundles/SensioFrameworkExtraBundle/annotations/converters.html page however.

Right now the Selenium2 driver factory always sets `tunnel-identifier` desired capability (see https://github.com/Behat/MinkExtension/blob/master/src/Behat/MinkExtension/ServiceContainer/Driver/Selenium2Factory.php#L63-L68) whenever it encounters `TRAVIS_JOB_NUMBER` environment variable (= every test that runs on Travis CI). I see 2...

``` php // mocked class class MockMe { function keepMeMethod() { $object = new static(); $object->mockMeMethod(); } function mockMeMethod() { echo 'default'; } } // mocking code $mock = m::mock('MockMe[mockMeMethod]');...

Bug
Blocker
has pr

Since PHP 7.3 I'm seeing this warning: ``` PHPUnit\Framework\TestCase::prophesize() is deprecated and will be removed in PHPUnit 10. Please use the trait provided by phpspec/prophecy-phpunit. ``` I can't just require...

The https://github.com/joomla/coding-standards/blob/master/Sniffs/Classes/InstantiateNewClassesSniff.php sniff is doing a lot of comparisons inside, but if it really checks that no `()` are present after `new SomeClass` then why it's not checking that. 1....

I have argument defined with `InputArgument::REQUIRED | InputArgument::IS_ARRAY` options, which means all non-matched arguments in command line are assigned to this one. During auto-complete the 1st match is auto-completed just...

bug

The `compgen` is interesting program in Bash, that provides auto-complete for various things in the system. For example: - `-a` means Names of alias - `-b` means Names of shell...

enhancement

Currently when I do `program help _completion` I'm getting this: ``` To enable BASH completion, run: eval `[program] _completion -g`. Or for an alias: eval `[program] _completion -g -p [alias]`....

We have several problems due usage of Syn library for JavaScript event triggering. I propose to switch to WebDriver native event triggering capabilities instead of using Syn library. During the...

Current "key*" methods are just emulating JS events instead of actually pressing corresponding keys. I recommend using dedicated WebDriver calls for that instead. Though we need to add test to...

bug