File tree 4 files changed +23
-1
lines changed
4 files changed +23
-1
lines changed Original file line number Diff line number Diff line change 3
3
.env.dist export-ignore
4
4
.gitattributes export-ignore
5
5
.github / export-ignore
6
+ .phpstan / export-ignore
6
7
.gitignore export-ignore
7
8
.php-cs-fixer.dist.php export-ignore
8
9
docker-compose.yml export-ignore
9
- phpstan.neon export-ignore
10
+ phpstan.neon.dist export-ignore
10
11
phpunit.xml export-ignore
11
12
tests / export-ignore
Original file line number Diff line number Diff line change @@ -7,3 +7,4 @@ lib/plugins/sfDoctrinePlugin/test/functional/fixtures/log/
7
7
/vendor
8
8
/composer.lock
9
9
.php-cs-fixer.cache
10
+ phpstan.neon
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ class ProjectConfiguration extends sfProjectConfiguration
4
+ {
5
+ }
6
+
7
+ class BaseForm extends sfForm
8
+ {
9
+ }
Original file line number Diff line number Diff line change
1
+ parameters:
2
+ level: 9
3
+ bootstrapFiles:
4
+ - .phpstan/bootstrap.php
5
+ paths:
6
+ - lib
7
+ - test
8
+ excludePaths:
9
+ analyse:
10
+ - lib/task/symfony/lime_symfony.php
11
+ - lib/task/symfony/sfSymfonyTestTask.class.php
You can’t perform that action at this time.
0 commit comments