File tree 3 files changed +17
-17
lines changed
3 files changed +17
-17
lines changed Original file line number Diff line number Diff line change @@ -23,13 +23,13 @@ jobs:
23
23
php : 7.1
24
24
install :
25
25
# Install Nette Code Checker
26
- - travis_retry composer create-project nette/code-checker temp/code-checker ~2 --no-progress
26
+ - travis_retry composer create-project nette/code-checker temp/code-checker ^3 --no-progress
27
27
# Install Nette Coding Standard
28
- - travis_retry composer create-project nette/coding-standard temp/coding-standard --no-progress
28
+ - travis_retry composer create-project nette/coding-standard temp/coding-standard ^2 --no-progress
29
29
30
30
script :
31
- - php temp/code-checker/src/ code-checker.php --short-arrays --strict-types -i tests/Utils/fixtures.reflection
32
- - php temp/coding-standard/ecs check src tests --config tests/coding-standard.neon
31
+ - php temp/code-checker/code-checker --short-arrays --strict-types -i tests/Utils/fixtures.reflection
32
+ - php temp/coding-standard/ecs check src tests --config tests/coding-standard.yml
33
33
34
34
35
35
- stage : Static Analysis
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ imports :
2
+ - { resource: '../temp/coding-standard/coding-standard-php71.yml' }
3
+
4
+ parameters :
5
+ skip :
6
+ PHP_CodeSniffer\Standards\PSR1\Sniffs\Methods\CamelCapsMethodNameSniff :
7
+ - tests/Utils/FileSystem.phpt # RemoteStream extends streamWrapper
8
+
9
+ PhpCsFixer\Fixer\Import\SingleImportPerStatementFixer :
10
+ - src/Utils/Arrays.php # use function
11
+ - src/Utils/Callback.php # use function
12
+ - src/Utils/Html.php # use function
13
+ - src/Utils/Strings.php # use function
You can’t perform that action at this time.
0 commit comments