File tree Expand file tree Collapse file tree 4 files changed +3
-5
lines changed
Expand file tree Collapse file tree 4 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,8 @@ name: rector
1414jobs :
1515 rector :
1616 uses : yiisoft/actions/.github/workflows/rector.yml@master
17+ secrets :
18+ token : ${{ secrets.YIISOFT_GITHUB_TOKEN }}
1719 with :
1820 os : >-
1921 ['ubuntu-latest']
Original file line number Diff line number Diff line change 4141 "httpsoft/http-message" : " ^1.0.9" ,
4242 "maglnet/composer-require-checker" : " ^4.4" ,
4343 "phpunit/phpunit" : " ^9.5" ,
44- "rector/rector" : " ^0.15.10 " ,
44+ "rector/rector" : " ^0.17.12 " ,
4545 "roave/infection-static-analysis-plugin" : " ^1.16" ,
4646 "spatie/phpunit-watcher" : " ^1.23" ,
4747 "vimeo/psalm" : " ^4.30|^5.6" ,
Original file line number Diff line number Diff line change 44
55use Rector \CodeQuality \Rector \Class_ \InlineConstructorDefaultToPropertyRector ;
66use Rector \Config \RectorConfig ;
7- use Rector \Php70 \Rector \FuncCall \NonVariableToVariableOnFunctionCallRector ;
87use Rector \Php71 \Rector \FuncCall \RemoveExtraParametersRector ;
98use Rector \Php74 \Rector \Closure \ClosureToArrowFunctionRector ;
109use Rector \Set \ValueObject \LevelSetList ;
2524
2625 $ rectorConfig ->skip ([
2726 ClosureToArrowFunctionRector::class,
28- NonVariableToVariableOnFunctionCallRector::class,
2927 RemoveExtraParametersRector::class,
3028 ]);
3129};
Original file line number Diff line number Diff line change @@ -51,8 +51,6 @@ final class ExceptionResponder implements MiddlewareInterface
5151 * ```
5252 *
5353 * @param callable[]|int[] $exceptionMap A callable that must return a `ResponseInterface` or response status code.
54- * @param ResponseFactoryInterface $responseFactory
55- * @param Injector $injector
5654 */
5755 public function __construct (
5856 private array $ exceptionMap ,
You can’t perform that action at this time.
0 commit comments