Fix build failures
This commit is contained in:
parent
10f0f7fd11
commit
61a439a7bb
|
@ -4,7 +4,7 @@ use PhpCsFixer\Config;
|
||||||
use Symfony\Component\Finder\Finder;
|
use Symfony\Component\Finder\Finder;
|
||||||
|
|
||||||
$finder = new Finder();
|
$finder = new Finder();
|
||||||
$finder->files()->in('src')->in('src');
|
$finder->files()->in('app/src')->in('app/tests');
|
||||||
|
|
||||||
return Config::create()
|
return Config::create()
|
||||||
->setRules([
|
->setRules([
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
parameters:
|
parameters:
|
||||||
level: 7
|
level: 7
|
||||||
paths:
|
paths:
|
||||||
- src
|
- app/src
|
||||||
includes:
|
includes:
|
||||||
- vendor/phpstan/phpstan-deprecation-rules/rules.neon
|
- vendor/phpstan/phpstan-deprecation-rules/rules.neon
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
stopOnFailure="true">
|
stopOnFailure="true">
|
||||||
<testsuites>
|
<testsuites>
|
||||||
<testsuite name="Talks">
|
<testsuite name="Talks">
|
||||||
<directory suffix="Test.php">tests</directory>
|
<directory suffix="Test.php">app/tests</directory>
|
||||||
</testsuite>
|
</testsuite>
|
||||||
</testsuites>
|
</testsuites>
|
||||||
</phpunit>
|
</phpunit>
|
||||||
|
|
Reference in a new issue