Oleg Andreyev

Results 77 comments of Oleg Andreyev

``` # Master Command being timed: "/usr/local/bin/php /Users/oandreyev/Development/composer/bin/composer update --prefer-dist --ignore-platform-reqs --no-cache" User time (seconds): 1.32 System time (seconds): 1.32 Percent of CPU this job got: 34% Elapsed (wall clock)...

``` # Master w/ cache Command being timed: "/usr/local/bin/php /Users/oandreyev/Development/composer/bin/composer update --prefer-dist --ignore-platform-reqs" User time (seconds): 0.70 System time (seconds): 0.78 Percent of CPU this job got: 26% Elapsed (wall...

@javiereguiluz the thing is that EasyAdmin is mapped to a "virtual field" which does some calculation inside (Collection::count) and PersistedCollection with EXTRA_LAZY always executes count query.

Today encountered same issue. I think the biggest problem here is that "Filter Form" does not define it's own Validation Group and it's caused that "Default" group is validated. As...

Since Symfony has EnumType we can do it like this (workaround): ```php // for index because of array_flip ChoiceField::new('packingType') ->onlyOnIndex() ->setChoices(function () { $choices = array_map(static fn (?PackingUnit $unit) =>...

Is there a way to enable debug mode for this plugin, so that I could provide more details. PS does not show any exceptions/errors in Event Logs.

see https://github.com/symfony/panther/issues/311

@stof recently we've been trying to migrate this library to `facebook/php-webdriver`, mostly because of `syn.js` which bundled into this library and because `instaclick/php-webdriver` is not supported that actively. So far...

Some browser driver take screenshots of the whole document (e.g. Geckodriver with Firefox) and others only of the current viewport (e.g. Chromedriver with Chrome).