File tree Expand file tree Collapse file tree 3 files changed +7
-11
lines changed Expand file tree Collapse file tree 3 files changed +7
-11
lines changed Original file line number Diff line number Diff line change 1+ /var
12/vendor
23/composer.lock
Original file line number Diff line number Diff line change 1- phpunit :
1+ clear-cache :
2+ rm -rf var
3+
4+ phpunit : clear-cache
25 docker-compose run --rm -T php /usr/local/bin/php /app/vendor/bin/phpunit
36
4- phpstan :
7+ phpstan : clear-cache
58 docker-compose run --rm -T php /usr/local/bin/php /app/vendor/bin/phpstan analyse
69
7- coverage :
10+ coverage : clear-cache
811 docker-compose run --rm -T php /usr/local/bin/php /app/vendor/bin/phpunit --coverage-html=vendor/coverage
912
1013composer-update :
Original file line number Diff line number Diff line change 22
33namespace SymfonyBundles \JsonRequestBundle \Tests \Fixture \App ;
44
5- use Symfony \Component \Filesystem \Filesystem ;
65use Symfony \Component \HttpKernel \Kernel as BaseKernel ;
76use Symfony \Bundle \FrameworkBundle \Kernel \MicroKernelTrait ;
87use Symfony \Component \Routing \Loader \Configurator \RoutingConfigurator ;
@@ -20,13 +19,6 @@ public function registerBundles(): iterable
2019 ];
2120 }
2221
23- public function shutdown (): void
24- {
25- parent ::shutdown ();
26-
27- (new Filesystem ())->remove ($ this ->getCacheDir ());
28- }
29-
3022 protected function configureContainer (ContainerConfigurator $ container ): void
3123 {
3224 $ container ->import ('../config/config.yaml ' );
You can’t perform that action at this time.
0 commit comments