From 61a439a7bb51871bf10221c81d6d100ddc24095e Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Fri, 18 Oct 2019 19:50:34 +0100 Subject: [PATCH] Fix build failures --- .php_cs.dist | 2 +- phpstan.neon | 2 +- phpunit.xml.dist | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.php_cs.dist b/.php_cs.dist index e7351a67..f0f8c35f 100644 --- a/.php_cs.dist +++ b/.php_cs.dist @@ -4,7 +4,7 @@ use PhpCsFixer\Config; use Symfony\Component\Finder\Finder; $finder = new Finder(); -$finder->files()->in('src')->in('src'); +$finder->files()->in('app/src')->in('app/tests'); return Config::create() ->setRules([ diff --git a/phpstan.neon b/phpstan.neon index 866b55f5..505ac39a 100644 --- a/phpstan.neon +++ b/phpstan.neon @@ -1,6 +1,6 @@ parameters: level: 7 paths: - - src + - app/src includes: - vendor/phpstan/phpstan-deprecation-rules/rules.neon diff --git a/phpunit.xml.dist b/phpunit.xml.dist index 842fcf1d..c31ed6f8 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -7,7 +7,7 @@ stopOnFailure="true"> - tests + app/tests