mirror of https://github.com/flightphp/core
commit
46e457f9c5
@ -1,15 +1,18 @@
|
||||
.idea/
|
||||
.vscode/
|
||||
vendor/
|
||||
composer.phar
|
||||
composer.lock
|
||||
*.sublime-*
|
||||
.DS_Store
|
||||
.phpunit.result.cache
|
||||
coverage/
|
||||
*.sublime*
|
||||
.runway-config.json
|
||||
.runway-creds.json
|
||||
/.idea
|
||||
/.vscode
|
||||
/coverage
|
||||
/vendor
|
||||
clover.xml
|
||||
composer.lock
|
||||
composer.phar
|
||||
phpcs.xml
|
||||
phpstan.neon
|
||||
phpunit.xml
|
||||
.runway-config.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
|
||||
watch:
|
||||
directories:
|
||||
- tests
|
||||
- flight
|
||||
fileMask: '*.php'
|
||||
notifications:
|
||||
passingTests: false
|
||||
failingTests: false
|
||||
passingTests: false
|
||||
phpunit:
|
||||
binaryPath: ./vendor/bin/phpunit
|
||||
arguments: '--stop-on-failure'
|
||||
binaryPath: ./vendor/bin/phpunit
|
||||
timeout: 180
|
||||
watch:
|
||||
directories:
|
||||
- tests
|
||||
- flight
|
||||
fileMask: '*.php'
|
||||
|
||||
Loading…
Reference in new issue