mirror of https://github.com/flightphp/core
commit
46e457f9c5
@ -1,15 +1,18 @@
|
|||||||
.idea/
|
*.sublime-*
|
||||||
.vscode/
|
.DS_Store
|
||||||
vendor/
|
|
||||||
composer.phar
|
|
||||||
composer.lock
|
|
||||||
.phpunit.result.cache
|
.phpunit.result.cache
|
||||||
coverage/
|
.runway-config.json
|
||||||
*.sublime*
|
.runway-creds.json
|
||||||
|
/.idea
|
||||||
|
/.vscode
|
||||||
|
/coverage
|
||||||
|
/vendor
|
||||||
clover.xml
|
clover.xml
|
||||||
|
composer.lock
|
||||||
|
composer.phar
|
||||||
phpcs.xml
|
phpcs.xml
|
||||||
phpstan.neon
|
phpstan.neon
|
||||||
phpunit.xml
|
phpunit.xml
|
||||||
.runway-config.json
|
.runway-config.json
|
||||||
.runway-creds.json
|
.runway-creds.json
|
||||||
.DS_Store
|
.phpunit-watcher.yml
|
||||||
|
|||||||
@ -0,0 +1,7 @@
|
|||||||
|
parameters:
|
||||||
|
ignoreErrors:
|
||||||
|
-
|
||||||
|
rawMessage: 'Method flight\core\Dispatcher::parseStringClassAndMethod() should return array{class-string|object, string} but returns non-empty-list<string>.'
|
||||||
|
identifier: return.type
|
||||||
|
count: 1
|
||||||
|
path: flight/core/Dispatcher.php
|
||||||
@ -1,13 +1,13 @@
|
|||||||
hideManual: true
|
hideManual: true
|
||||||
watch:
|
|
||||||
directories:
|
|
||||||
- tests
|
|
||||||
- flight
|
|
||||||
fileMask: '*.php'
|
|
||||||
notifications:
|
notifications:
|
||||||
passingTests: false
|
|
||||||
failingTests: false
|
failingTests: false
|
||||||
|
passingTests: false
|
||||||
phpunit:
|
phpunit:
|
||||||
binaryPath: ./vendor/bin/phpunit
|
|
||||||
arguments: '--stop-on-failure'
|
arguments: '--stop-on-failure'
|
||||||
|
binaryPath: ./vendor/bin/phpunit
|
||||||
timeout: 180
|
timeout: 180
|
||||||
|
watch:
|
||||||
|
directories:
|
||||||
|
- tests
|
||||||
|
- flight
|
||||||
|
fileMask: '*.php'
|
||||||
|
|||||||
Loading…
Reference in new issue