mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-21 21:16:16 +01:00
[BUGFIX] Add hidden files to find in PHP lint (#559)
Resolves: #546 Also fix PhpStorm meta codestyle.
This commit is contained in:
parent
24480617b6
commit
44ccee57f2
2 changed files with 3 additions and 3 deletions
|
@ -157,12 +157,12 @@ namespace PHPSTORM_META {
|
|||
|
||||
override(\TYPO3\CMS\Core\Routing\SiteMatcher::matchRequest(), type(
|
||||
\TYPO3\CMS\Core\Routing\SiteRouteResult::class,
|
||||
\TYPO3\CMS\Core\Routing\RouteResultInterface::class,
|
||||
\TYPO3\CMS\Core\Routing\RouteResultInterface::class
|
||||
)
|
||||
);
|
||||
|
||||
override(\TYPO3\CMS\Core\Routing\PageRouter::matchRequest(), type(
|
||||
\TYPO3\CMS\Core\Routing\PageArguments::class,
|
||||
\TYPO3\CMS\Core\Routing\RouteResultInterface::class,
|
||||
\TYPO3\CMS\Core\Routing\RouteResultInterface::class
|
||||
));
|
||||
}
|
||||
|
|
|
@ -133,7 +133,7 @@
|
|||
],
|
||||
"ci:php:copypaste": "@php ./tools/phpcpd Classes",
|
||||
"ci:php:cs-fixer": "php-cs-fixer fix --config .php-cs-fixer.php -v --dry-run --using-cache no --diff",
|
||||
"ci:php:lint": "find *.php Classes Configuration Tests -name '*.php' -print0 | xargs -r -0 -n 1 -P 4 php -l",
|
||||
"ci:php:lint": "find .*.php *.php Classes Configuration Tests -name '*.php' -print0 | xargs -r -0 -n 1 -P 4 php -l",
|
||||
"ci:php:sniff": "phpcs Classes Configuration Tests",
|
||||
"ci:php:stan": "phpstan --no-progress",
|
||||
"ci:static": [
|
||||
|
|
Loading…
Reference in a new issue