mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-09 23:56:14 +01:00
18 lines
293 B
PHP
18 lines
293 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
use Symfony\Component\Finder\Finder;
|
||
|
|
||
|
$finder = new Finder();
|
||
|
$finder
|
||
|
->in(__DIR__)
|
||
|
->notPath('tools')
|
||
|
->notPath('.Build')
|
||
|
->notPath('var')
|
||
|
->notPath('Documentation-GENERATED-temp')
|
||
|
->notName('phpstan-baseline.neon')
|
||
|
;
|
||
|
|
||
|
return $finder;
|