Skip to content

Commit f1e8b0e

Browse files
committed
Updated dependencies
1 parent a5263a8 commit f1e8b0e

File tree

11 files changed

+279
-78
lines changed

11 files changed

+279
-78
lines changed

composer.lock

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rector.src.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
use Rector\Config\RectorConfig;
44
use Rector\Php55\Rector\String_\StringClassNameToClassConstantRector;
55
use Rector\Set\ValueObject\LevelSetList;
6+
use Rector\CodingStyle\Rector\FunctionLike\FunctionLikeToFirstClassCallableRector;
7+
use Rector\CodingStyle\Rector\FuncCall\FunctionFirstClassCallableRector;
8+
use Rector\Php71\Rector\FuncCall\RemoveExtraParametersRector;
69

710
return RectorConfig::configure()
811
->withPaths([
@@ -16,6 +19,9 @@
1619
__DIR__ . '/src/tools/*/*/src',
1720
])
1821
->withSkip([
22+
RemoveExtraParametersRector::class,
23+
FunctionFirstClassCallableRector::class,
24+
FunctionLikeToFirstClassCallableRector::class,
1925
StringClassNameToClassConstantRector::class,
2026
__DIR__ . '/src/lib/parquet/src/Flow/Parquet/ThriftModel/*',
2127
])

rector.tests.php

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,9 @@
5858
use Rector\Transform\Rector\StaticCall\StaticCallToFuncCallRector;
5959
use \Rector\Transform\ValueObject\StaticCallToFuncCall;
6060
use Rector\PHPUnit\AnnotationsToAttributes\Rector\ClassMethod\DataProviderAnnotationToAttributeRector;
61+
use Rector\Php71\Rector\FuncCall\RemoveExtraParametersRector;
62+
use Rector\CodingStyle\Rector\FuncCall\FunctionFirstClassCallableRector;
63+
use Rector\CodingStyle\Rector\FunctionLike\FunctionLikeToFirstClassCallableRector;
6164

6265
return RectorConfig::configure()
6366
->withPaths([
@@ -162,7 +165,10 @@
162165
]
163166
)
164167
->withSkip([
165-
RemoveParentCallWithoutParentRector::class
168+
RemoveParentCallWithoutParentRector::class,
169+
RemoveExtraParametersRector::class,
170+
FunctionFirstClassCallableRector::class,
171+
FunctionLikeToFirstClassCallableRector::class,
166172
])
167173
->withCache(__DIR__ . '/var/rector/tests')
168174
->withSkipPath(__DIR__ . '/src/lib/parquet/src/Flow/Parquet/Thrift')

tools/blackfire/composer.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tools/box/composer.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tools/cs-fixer/composer.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tools/infection/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "flow-php/flow-tools",
33
"description": "Flow PHP ETL - Tools",
44
"require-dev": {
5-
"infection/infection": "^0.30.1"
5+
"infection/infection": "^0.31"
66
},
77
"config": {
88
"allow-plugins": false

0 commit comments

Comments
 (0)