mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 00:36:13 +01:00
17 lines
293 B
PHP
17 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;
|