File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2424 steps :
2525 - checkout
2626 - run : |
27- echo 'deb [trusted=yes] https://repo.symfony.com/apt/ /' | tee /etc/apt/sources.list.d/symfony-cli.list
2827 apt-get update
29- apt-get -y install git zip jq symfony-cli
28+ apt-get -y install git zip jq
3029 - run : |
3130 php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
3231 php composer-setup.php
4342 mv composer.new.json composer.json
4443 cat composer.json
4544 - run : composer update << parameters.composer-options >> --ignore-platform-req=ext-intl
46- - run : symfony security:check
4745 - run : vendor/bin/phpstan analyse --no-progress --memory-limit=-1
4846 - run : vendor/bin/phpspec run -v --config=phpspec.no-coverage.yml
4947 - run : bin/lint-twig src/
Original file line number Diff line number Diff line change 66
77use Generator ;
88use Knp \DictionaryBundle \Dictionary ;
9- use ReturnTypeWillChange ;
109
1110/**
1211 * @template E
Original file line number Diff line number Diff line change 66
77use Knp \DictionaryBundle \DataCollector \DictionaryDataCollector ;
88use Knp \DictionaryBundle \Dictionary ;
9- use ReturnTypeWillChange ;
109
1110/**
1211 * @template E of mixed
Original file line number Diff line number Diff line change 55namespace Knp \DictionaryBundle \Dictionary ;
66
77use Knp \DictionaryBundle \Dictionary ;
8- use ReturnTypeWillChange ;
98
109/**
1110 * @template E
Original file line number Diff line number Diff line change @@ -33,8 +33,7 @@ private function varToString(mixed $var): string
3333 if (\is_float ($ var )) {
3434 return 0.0 === $ var
3535 ? '0.0 '
36- : (string ) $ var
37- ;
36+ : (string ) $ var ;
3837 }
3938
4039 if (\is_object ($ var ) && method_exists ($ var , '__toString ' )) {
You can’t perform that action at this time.
0 commit comments