├── .editorconfig ├── .gitattributes ├── .github ├── codecov.yml ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE.md ├── Makefile ├── README.md ├── bin ├── cake ├── cake.bat └── cake.php ├── composer.json ├── config ├── app.php ├── bootstrap.php ├── paths.php ├── rector │ ├── cakephp40.php │ ├── cakephp41.php │ ├── cakephp42.php │ ├── cakephp43.php │ ├── cakephp44.php │ ├── cakephp45.php │ ├── cakephp50.php │ ├── cakephp51.php │ ├── cakephp52.php │ ├── cakephp53.php │ ├── chronos3.php │ ├── migrations45.php │ ├── migrations50.php │ ├── phpunit80.php │ └── sets │ │ ├── cakephp-fluent-options.php │ │ ├── cakephp30.php │ │ ├── cakephp34.php │ │ ├── cakephp35.php │ │ ├── cakephp36.php │ │ ├── cakephp37.php │ │ ├── cakephp38.php │ │ ├── cakephp40.php │ │ ├── cakephp41.php │ │ ├── cakephp42.php │ │ ├── cakephp43.php │ │ ├── cakephp44.php │ │ ├── cakephp45.php │ │ ├── cakephp50.php │ │ ├── cakephp51.php │ │ ├── cakephp52.php │ │ ├── cakephp53.php │ │ ├── chronos3.php │ │ ├── migrations45.php │ │ └── migrations50.php └── requirements.php ├── phpcs.xml ├── phpunit.xml.dist ├── src ├── Application.php ├── Command │ ├── FileRenameCommand.php │ ├── RectorCommand.php │ └── UpgradeCommand.php └── Rector │ ├── NodeAnalyzer │ └── FluentChainMethodCallNodeAnalyzer.php │ ├── Rector │ ├── ClassMethod │ │ ├── FormBuildValidatorRector.php │ │ └── FormExecuteToProcessRector.php │ ├── MethodCall │ │ ├── AddMethodCallArgsRector.php │ │ ├── ArrayToFluentCallRector.php │ │ ├── ChangeEntityTraitSetArrayToPatchRector.php │ │ ├── EntityIsEmptyRector.php │ │ ├── EntityPatchRector.php │ │ ├── ModalToGetSetRector.php │ │ ├── NewEntityToNewEmptyEntityRector.php │ │ ├── NewExprToFuncRector.php │ │ ├── OptionsArrayToNamedParametersRector.php │ │ ├── PaginatorCounterFormatRector.php │ │ ├── QueryParamAccessRector.php │ │ ├── RemoveIntermediaryMethodRector.php │ │ ├── RemoveMethodCallRector.php │ │ ├── RenameMethodCallBasedOnParameterRector.php │ │ ├── SetSerializeToViewBuilderRector.php │ │ ├── StaticConnectionHelperRector.php │ │ └── TableRegistryLocatorRector.php │ ├── Namespace_ │ │ └── AppUsesStaticCallToUseStatementRector.php │ └── Property │ │ └── ChangeSnakedFixtureNameToPascalRector.php │ ├── Set │ ├── CakePHPLevelSetList.php │ └── CakePHPSetList.php │ ├── ShortClassNameResolver.php │ └── ValueObject │ ├── AddMethodCallArgs.php │ ├── ArrayItemsAndFluentClass.php │ ├── ArrayToFluentCall.php │ ├── FactoryMethod.php │ ├── ModalToGetSet.php │ ├── OptionsArrayToNamedParameters.php │ ├── RemoveIntermediaryMethod.php │ ├── RemoveMethodCall.php │ ├── RenameMethodCallBasedOnParameter.php │ └── SetSerializeToView.php └── tests ├── TestCase ├── Command │ ├── FileRenameCommandTest.php │ └── RectorCommandTest.php ├── Rector │ ├── ClassMethod │ │ ├── FormBuildValidatorRector │ │ │ ├── Fixture │ │ │ │ └── fixture.php.inc │ │ │ ├── FormBuildValidatorRectorTest.php │ │ │ └── config │ │ │ │ └── configured_rule.php │ │ └── FormExecuteToProcessRector │ │ │ ├── Fixture │ │ │ ├── fixture.php.inc │ │ │ └── skip_when_process_exists.php.inc │ │ │ ├── FormExecuteToProcessRectorTest.php │ │ │ └── config │ │ │ └── configured_rule.php │ ├── MethodCall │ │ ├── AddMethodCallArgsRector │ │ │ ├── AddMethodCallArgsRectorTest.php │ │ │ ├── Fixture │ │ │ │ └── fixture.php.inc │ │ │ ├── Source │ │ │ │ └── SomeModelType.php │ │ │ └── config │ │ │ │ └── configured_rule.php │ │ ├── ArrayToFluentCallRector │ │ │ ├── ArrayToFluentCallRectorTest.php │ │ │ ├── Fixture │ │ │ │ ├── array_to_fluent_call.php.inc │ │ │ │ └── fluent_factory.php.inc │ │ │ ├── Source │ │ │ │ ├── ConfigurableClass.php │ │ │ │ └── FactoryClass.php │ │ │ └── config │ │ │ │ └── configured_rule.php │ │ ├── ChangeEntityTraitSetArrayToPatch │ │ │ ├── ChangeEntityTraitSetArrayToPatchTest.php │ │ │ ├── Fixture │ │ │ │ └── fixture.php.inc │ │ │ ├── Source │ │ │ │ └── OtherClassWithSetMethod.php │ │ │ └── config │ │ │ │ └── configured_rule.php │ │ ├── EntityPatchRector │ │ │ ├── EntityPatchRectorTest.php │ │ │ ├── Fixture │ │ │ │ ├── fixture.php.inc │ │ │ │ └── skip_non_entity.php.inc │ │ │ └── config │ │ │ │ └── configured_rule.php │ │ ├── ModalToGetSetRector │ │ │ ├── Fixture │ │ │ │ ├── fixture.php.inc │ │ │ │ ├── fixture2.php.inc │ │ │ │ ├── fixture3.php.inc │ │ │ │ └── fixture4.php.inc │ │ │ ├── ModalToGetSetRectorTest.php │ │ │ ├── Source │ │ │ │ ├── Entity.php │ │ │ │ └── SomeModelType.php │ │ │ └── config │ │ │ │ └── configured_rule.php │ │ ├── NewEntityToNewEmptyEntityRector │ │ │ ├── Fixture │ │ │ │ └── fixture.php.inc │ │ │ ├── NewEntityToNewEmptyEntityRectorTest.php │ │ │ └── config │ │ │ │ └── configured_rule.php │ │ ├── NewExprToFuncRector │ │ │ ├── Fixture │ │ │ │ ├── aggregate_functions.php.inc │ │ │ │ ├── skip_non_func_methods.php.inc │ │ │ │ └── sql_functions.php.inc │ │ │ ├── NewExprToFuncRectorTest.php │ │ │ └── config │ │ │ │ └── configured_rule.php │ │ ├── OptionsArrayToNamedParametersRector │ │ │ ├── Fixture │ │ │ │ └── options_to_named_parameters.php.inc │ │ │ ├── OptionsArrayToNamedParametersRectorTest.php │ │ │ ├── Source │ │ │ │ └── ConfigurableClass.php │ │ │ └── config │ │ │ │ └── configured_rule.php │ │ ├── PaginatorCounterFormatRector │ │ │ ├── Fixture │ │ │ │ └── fixture.php.inc │ │ │ ├── PaginatorCounterFormatRectorTest.php │ │ │ └── config │ │ │ │ └── configured_rule.php │ │ ├── QueryParamAccessRector │ │ │ ├── Fixture │ │ │ │ ├── fixture.php.inc │ │ │ │ └── skip_other_params.php.inc │ │ │ ├── QueryParamAccessRectorTest.php │ │ │ └── config │ │ │ │ └── configured_rule.php │ │ ├── RemoveIntermediaryMethodRector │ │ │ ├── Fixture │ │ │ │ └── fixture.php.inc │ │ │ ├── RemoveIntermediaryMethodRectorTest.php │ │ │ └── config │ │ │ │ └── configured_rule.php │ │ ├── RemoveMethodCallArgsRector │ │ │ ├── Fixture │ │ │ │ └── fixture.php.inc │ │ │ ├── RemoveMethodCallArgsRectorTest.php │ │ │ ├── Source │ │ │ │ └── SomeModelType.php │ │ │ └── config │ │ │ │ └── configured_rule.php │ │ └── RenameMethodCallBasedOnParameterRector │ │ │ ├── Fixture │ │ │ ├── fixture.php.inc │ │ │ └── skip_fixture2.php.inc │ │ │ ├── RenameMethodCallBasedOnParameterRectorTest.php │ │ │ ├── Source │ │ │ └── SomeModelType.php │ │ │ └── config │ │ │ └── configured_rule.php │ ├── Namespace_ │ │ └── AppUsesStaticCallToUseStatementRector │ │ │ ├── AppUsesStaticCallToUseStatementRectorTest.php │ │ │ ├── Fixture │ │ │ ├── cakephp_controller.php.inc │ │ │ ├── cakephp_controller_with_strict_types.php.inc │ │ │ ├── cakephp_fixture.php.inc │ │ │ ├── cakephp_import_namespaces_up.php.inc │ │ │ ├── fixture.php.inc │ │ │ ├── inside_if.php.inc │ │ │ ├── skip_different_static_call.php.inc │ │ │ ├── without_namespace.php.inc │ │ │ └── without_namespace_with_strict_types.php.inc │ │ │ ├── Source │ │ │ ├── App.php │ │ │ └── Xml.php │ │ │ └── config │ │ │ └── configured_rule.php │ └── Property │ │ └── ChangeSnakedFixtureNameToPascal │ │ ├── ChangeSnakedFixtureNameToPascalTest.php │ │ ├── Fixture │ │ └── fixture.php.inc │ │ └── config │ │ └── configured_rule.php └── TestCase.php ├── bootstrap.php └── test_apps ├── original ├── FileRenameCommand-testLocales │ ├── plugins │ │ ├── TestPlugin │ │ │ └── src │ │ │ │ ├── Locale │ │ │ │ └── default.pot │ │ │ │ └── Template │ │ │ │ └── empty │ │ └── WithoutLocalesPlugin │ │ │ └── src │ │ │ └── Template │ │ │ └── empty │ └── src │ │ ├── Locale │ │ └── default.pot │ │ └── Template │ │ └── empty ├── FileRenameCommand-testTemplates │ ├── plugins │ │ ├── TestPlugin │ │ │ └── src │ │ │ │ ├── Locale │ │ │ │ └── default.pot │ │ │ │ └── Template │ │ │ │ ├── Cell │ │ │ │ └── TestPluginCell │ │ │ │ │ └── bar.ctp │ │ │ │ ├── Element │ │ │ │ └── Flash │ │ │ │ │ └── default.ctp │ │ │ │ ├── Email │ │ │ │ ├── html │ │ │ │ │ └── default.ctp │ │ │ │ └── text │ │ │ │ │ └── default.ctp │ │ │ │ ├── Error │ │ │ │ ├── error400.ctp │ │ │ │ └── error500.ctp │ │ │ │ ├── Layout │ │ │ │ └── default.ctp │ │ │ │ └── Pages │ │ │ │ └── home.ctp │ │ └── WithoutTemplatesPlugin │ │ │ └── src │ │ │ ├── Locale │ │ │ └── default.pot │ │ │ └── empty │ └── src │ │ ├── Locale │ │ └── default.pot │ │ ├── Template │ │ ├── Cell │ │ │ └── TestCell │ │ │ │ └── display.ctp │ │ ├── Element │ │ │ └── Flash │ │ │ │ └── default.ctp │ │ ├── Email │ │ │ ├── html │ │ │ │ └── default.ctp │ │ │ └── text │ │ │ │ └── default.ctp │ │ ├── Error │ │ │ ├── error400.ctp │ │ │ └── error500.ctp │ │ ├── Layout │ │ │ └── default.ctp │ │ └── Pages │ │ │ └── home.ctp │ │ └── View │ │ ├── AjaxView.php │ │ ├── AppView.php │ │ ├── Cell │ │ └── empty │ │ └── Helper │ │ └── empty ├── RectorCommand-testApply45 │ └── src │ │ └── View │ │ └── AppView.php ├── RectorCommand-testApply50 │ └── src │ │ ├── CommandExecuteReturn.php │ │ ├── DateTimeRename.php │ │ ├── FixtureProperties.php │ │ ├── HelperProperties.php │ │ ├── Model │ │ └── Entity │ │ │ └── Category.php │ │ ├── Plugin.php │ │ ├── QueryUpgrade.php │ │ ├── SomeCell.php │ │ ├── SomeComponent.php │ │ ├── SomeMailer.php │ │ ├── SomeTest.php │ │ ├── SomeView.php │ │ └── SomeWidget.php ├── RectorCommand-testApply51 │ └── src │ │ └── SomeTest.php ├── RectorCommand-testApply52 │ └── src │ │ └── SomeTest.php ├── RectorCommand-testApply53 │ └── src │ │ └── SomeTest.php ├── RectorCommand-testApplyAppDir │ └── Command │ │ └── HelloCommand.php ├── RectorCommand-testApplyChronos3Date │ └── src │ │ └── Chronos3.php ├── RectorCommand-testApplyChronos3DateTime │ └── src │ │ └── Chronos3.php └── RectorCommand-testApplyMigrations45 │ └── src │ └── Migrations45.php └── upgraded ├── FileRenameCommand-testLocales ├── plugins │ ├── TestPlugin │ │ ├── resources │ │ │ └── locales │ │ │ │ └── default.pot │ │ └── src │ │ │ └── Template │ │ │ └── empty │ └── WithoutLocalesPlugin │ │ └── src │ │ └── Template │ │ └── empty ├── resources │ └── locales │ │ └── default.pot └── src │ └── Template │ └── empty ├── FileRenameCommand-testTemplates ├── plugins │ ├── TestPlugin │ │ ├── src │ │ │ └── Locale │ │ │ │ └── default.pot │ │ └── templates │ │ │ ├── Error │ │ │ ├── error400.php │ │ │ └── error500.php │ │ │ ├── Pages │ │ │ └── home.php │ │ │ ├── cell │ │ │ └── TestPluginCell │ │ │ │ └── bar.php │ │ │ ├── element │ │ │ └── flash │ │ │ │ └── default.php │ │ │ ├── email │ │ │ ├── html │ │ │ │ └── default.php │ │ │ └── text │ │ │ │ └── default.php │ │ │ └── layout │ │ │ └── default.php │ └── WithoutTemplatesPlugin │ │ └── src │ │ ├── Locale │ │ └── default.pot │ │ └── empty ├── src │ ├── Locale │ │ └── default.pot │ └── View │ │ ├── AjaxView.php │ │ ├── AppView.php │ │ ├── Cell │ │ └── empty │ │ └── Helper │ │ └── empty └── templates │ ├── Error │ ├── error400.php │ └── error500.php │ ├── Pages │ └── home.php │ ├── cell │ └── TestCell │ │ └── display.php │ ├── element │ └── flash │ │ └── default.php │ ├── email │ ├── html │ │ └── default.php │ └── text │ │ └── default.php │ └── layout │ └── default.php ├── RectorCommand-testApply45 └── src │ └── View │ └── AppView.php ├── RectorCommand-testApply50 └── src │ ├── CommandExecuteReturn.php │ ├── DateTimeRename.php │ ├── FixtureProperties.php │ ├── HelperProperties.php │ ├── Model │ └── Entity │ │ └── Category.php │ ├── Plugin.php │ ├── QueryUpgrade.php │ ├── SomeCell.php │ ├── SomeComponent.php │ ├── SomeMailer.php │ ├── SomeTest.php │ ├── SomeView.php │ └── SomeWidget.php ├── RectorCommand-testApply51 └── src │ └── SomeTest.php ├── RectorCommand-testApply52 └── src │ └── SomeTest.php ├── RectorCommand-testApply53 └── src │ └── SomeTest.php ├── RectorCommand-testApplyChronos3Date └── src │ └── Chronos3.php ├── RectorCommand-testApplyChronos3DateTime └── src │ └── Chronos3.php └── RectorCommand-testApplyMigrations45 └── src └── Migrations45.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/.github/codecov.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/README.md -------------------------------------------------------------------------------- /bin/cake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/bin/cake -------------------------------------------------------------------------------- /bin/cake.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/bin/cake.bat -------------------------------------------------------------------------------- /bin/cake.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/bin/cake.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/composer.json -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/config/app.php -------------------------------------------------------------------------------- /config/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/config/bootstrap.php -------------------------------------------------------------------------------- /config/paths.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/config/paths.php -------------------------------------------------------------------------------- /config/rector/cakephp40.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/config/rector/cakephp40.php -------------------------------------------------------------------------------- /config/rector/cakephp41.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/config/rector/cakephp41.php -------------------------------------------------------------------------------- /config/rector/cakephp42.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/config/rector/cakephp42.php -------------------------------------------------------------------------------- /config/rector/cakephp43.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/config/rector/cakephp43.php -------------------------------------------------------------------------------- /config/rector/cakephp44.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/config/rector/cakephp44.php -------------------------------------------------------------------------------- /config/rector/cakephp45.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/config/rector/cakephp45.php -------------------------------------------------------------------------------- /config/rector/cakephp50.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/config/rector/cakephp50.php -------------------------------------------------------------------------------- /config/rector/cakephp51.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/config/rector/cakephp51.php -------------------------------------------------------------------------------- /config/rector/cakephp52.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/config/rector/cakephp52.php -------------------------------------------------------------------------------- /config/rector/cakephp53.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/config/rector/cakephp53.php -------------------------------------------------------------------------------- /config/rector/chronos3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/config/rector/chronos3.php -------------------------------------------------------------------------------- /config/rector/migrations45.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/config/rector/migrations45.php -------------------------------------------------------------------------------- /config/rector/migrations50.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/config/rector/migrations50.php -------------------------------------------------------------------------------- /config/rector/phpunit80.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/config/rector/phpunit80.php -------------------------------------------------------------------------------- /config/rector/sets/cakephp-fluent-options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/config/rector/sets/cakephp-fluent-options.php -------------------------------------------------------------------------------- /config/rector/sets/cakephp30.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/config/rector/sets/cakephp30.php -------------------------------------------------------------------------------- /config/rector/sets/cakephp34.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/config/rector/sets/cakephp34.php -------------------------------------------------------------------------------- /config/rector/sets/cakephp35.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/config/rector/sets/cakephp35.php -------------------------------------------------------------------------------- /config/rector/sets/cakephp36.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/config/rector/sets/cakephp36.php -------------------------------------------------------------------------------- /config/rector/sets/cakephp37.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/config/rector/sets/cakephp37.php -------------------------------------------------------------------------------- /config/rector/sets/cakephp38.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/config/rector/sets/cakephp38.php -------------------------------------------------------------------------------- /config/rector/sets/cakephp40.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/config/rector/sets/cakephp40.php -------------------------------------------------------------------------------- /config/rector/sets/cakephp41.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/config/rector/sets/cakephp41.php -------------------------------------------------------------------------------- /config/rector/sets/cakephp42.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/config/rector/sets/cakephp42.php -------------------------------------------------------------------------------- /config/rector/sets/cakephp43.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/config/rector/sets/cakephp43.php -------------------------------------------------------------------------------- /config/rector/sets/cakephp44.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/config/rector/sets/cakephp44.php -------------------------------------------------------------------------------- /config/rector/sets/cakephp45.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/config/rector/sets/cakephp45.php -------------------------------------------------------------------------------- /config/rector/sets/cakephp50.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/config/rector/sets/cakephp50.php -------------------------------------------------------------------------------- /config/rector/sets/cakephp51.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/config/rector/sets/cakephp51.php -------------------------------------------------------------------------------- /config/rector/sets/cakephp52.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/config/rector/sets/cakephp52.php -------------------------------------------------------------------------------- /config/rector/sets/cakephp53.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/config/rector/sets/cakephp53.php -------------------------------------------------------------------------------- /config/rector/sets/chronos3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/config/rector/sets/chronos3.php -------------------------------------------------------------------------------- /config/rector/sets/migrations45.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/config/rector/sets/migrations45.php -------------------------------------------------------------------------------- /config/rector/sets/migrations50.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/config/rector/sets/migrations50.php -------------------------------------------------------------------------------- /config/requirements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/config/requirements.php -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/phpcs.xml -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/src/Application.php -------------------------------------------------------------------------------- /src/Command/FileRenameCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/src/Command/FileRenameCommand.php -------------------------------------------------------------------------------- /src/Command/RectorCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/src/Command/RectorCommand.php -------------------------------------------------------------------------------- /src/Command/UpgradeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/src/Command/UpgradeCommand.php -------------------------------------------------------------------------------- /src/Rector/NodeAnalyzer/FluentChainMethodCallNodeAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/src/Rector/NodeAnalyzer/FluentChainMethodCallNodeAnalyzer.php -------------------------------------------------------------------------------- /src/Rector/Rector/ClassMethod/FormBuildValidatorRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/src/Rector/Rector/ClassMethod/FormBuildValidatorRector.php -------------------------------------------------------------------------------- /src/Rector/Rector/ClassMethod/FormExecuteToProcessRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/src/Rector/Rector/ClassMethod/FormExecuteToProcessRector.php -------------------------------------------------------------------------------- /src/Rector/Rector/MethodCall/AddMethodCallArgsRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/src/Rector/Rector/MethodCall/AddMethodCallArgsRector.php -------------------------------------------------------------------------------- /src/Rector/Rector/MethodCall/ArrayToFluentCallRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/src/Rector/Rector/MethodCall/ArrayToFluentCallRector.php -------------------------------------------------------------------------------- /src/Rector/Rector/MethodCall/ChangeEntityTraitSetArrayToPatchRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/src/Rector/Rector/MethodCall/ChangeEntityTraitSetArrayToPatchRector.php -------------------------------------------------------------------------------- /src/Rector/Rector/MethodCall/EntityIsEmptyRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/src/Rector/Rector/MethodCall/EntityIsEmptyRector.php -------------------------------------------------------------------------------- /src/Rector/Rector/MethodCall/EntityPatchRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/src/Rector/Rector/MethodCall/EntityPatchRector.php -------------------------------------------------------------------------------- /src/Rector/Rector/MethodCall/ModalToGetSetRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/src/Rector/Rector/MethodCall/ModalToGetSetRector.php -------------------------------------------------------------------------------- /src/Rector/Rector/MethodCall/NewEntityToNewEmptyEntityRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/src/Rector/Rector/MethodCall/NewEntityToNewEmptyEntityRector.php -------------------------------------------------------------------------------- /src/Rector/Rector/MethodCall/NewExprToFuncRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/src/Rector/Rector/MethodCall/NewExprToFuncRector.php -------------------------------------------------------------------------------- /src/Rector/Rector/MethodCall/OptionsArrayToNamedParametersRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/src/Rector/Rector/MethodCall/OptionsArrayToNamedParametersRector.php -------------------------------------------------------------------------------- /src/Rector/Rector/MethodCall/PaginatorCounterFormatRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/src/Rector/Rector/MethodCall/PaginatorCounterFormatRector.php -------------------------------------------------------------------------------- /src/Rector/Rector/MethodCall/QueryParamAccessRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/src/Rector/Rector/MethodCall/QueryParamAccessRector.php -------------------------------------------------------------------------------- /src/Rector/Rector/MethodCall/RemoveIntermediaryMethodRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/src/Rector/Rector/MethodCall/RemoveIntermediaryMethodRector.php -------------------------------------------------------------------------------- /src/Rector/Rector/MethodCall/RemoveMethodCallRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/src/Rector/Rector/MethodCall/RemoveMethodCallRector.php -------------------------------------------------------------------------------- /src/Rector/Rector/MethodCall/RenameMethodCallBasedOnParameterRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/src/Rector/Rector/MethodCall/RenameMethodCallBasedOnParameterRector.php -------------------------------------------------------------------------------- /src/Rector/Rector/MethodCall/SetSerializeToViewBuilderRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/src/Rector/Rector/MethodCall/SetSerializeToViewBuilderRector.php -------------------------------------------------------------------------------- /src/Rector/Rector/MethodCall/StaticConnectionHelperRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/src/Rector/Rector/MethodCall/StaticConnectionHelperRector.php -------------------------------------------------------------------------------- /src/Rector/Rector/MethodCall/TableRegistryLocatorRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/src/Rector/Rector/MethodCall/TableRegistryLocatorRector.php -------------------------------------------------------------------------------- /src/Rector/Rector/Namespace_/AppUsesStaticCallToUseStatementRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/src/Rector/Rector/Namespace_/AppUsesStaticCallToUseStatementRector.php -------------------------------------------------------------------------------- /src/Rector/Rector/Property/ChangeSnakedFixtureNameToPascalRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/src/Rector/Rector/Property/ChangeSnakedFixtureNameToPascalRector.php -------------------------------------------------------------------------------- /src/Rector/Set/CakePHPLevelSetList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/src/Rector/Set/CakePHPLevelSetList.php -------------------------------------------------------------------------------- /src/Rector/Set/CakePHPSetList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/src/Rector/Set/CakePHPSetList.php -------------------------------------------------------------------------------- /src/Rector/ShortClassNameResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/src/Rector/ShortClassNameResolver.php -------------------------------------------------------------------------------- /src/Rector/ValueObject/AddMethodCallArgs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/src/Rector/ValueObject/AddMethodCallArgs.php -------------------------------------------------------------------------------- /src/Rector/ValueObject/ArrayItemsAndFluentClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/src/Rector/ValueObject/ArrayItemsAndFluentClass.php -------------------------------------------------------------------------------- /src/Rector/ValueObject/ArrayToFluentCall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/src/Rector/ValueObject/ArrayToFluentCall.php -------------------------------------------------------------------------------- /src/Rector/ValueObject/FactoryMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/src/Rector/ValueObject/FactoryMethod.php -------------------------------------------------------------------------------- /src/Rector/ValueObject/ModalToGetSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/src/Rector/ValueObject/ModalToGetSet.php -------------------------------------------------------------------------------- /src/Rector/ValueObject/OptionsArrayToNamedParameters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/src/Rector/ValueObject/OptionsArrayToNamedParameters.php -------------------------------------------------------------------------------- /src/Rector/ValueObject/RemoveIntermediaryMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/src/Rector/ValueObject/RemoveIntermediaryMethod.php -------------------------------------------------------------------------------- /src/Rector/ValueObject/RemoveMethodCall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/src/Rector/ValueObject/RemoveMethodCall.php -------------------------------------------------------------------------------- /src/Rector/ValueObject/RenameMethodCallBasedOnParameter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/src/Rector/ValueObject/RenameMethodCallBasedOnParameter.php -------------------------------------------------------------------------------- /src/Rector/ValueObject/SetSerializeToView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/src/Rector/ValueObject/SetSerializeToView.php -------------------------------------------------------------------------------- /tests/TestCase/Command/FileRenameCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Command/FileRenameCommandTest.php -------------------------------------------------------------------------------- /tests/TestCase/Command/RectorCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Command/RectorCommandTest.php -------------------------------------------------------------------------------- /tests/TestCase/Rector/ClassMethod/FormBuildValidatorRector/Fixture/fixture.php.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/ClassMethod/FormBuildValidatorRector/Fixture/fixture.php.inc -------------------------------------------------------------------------------- /tests/TestCase/Rector/ClassMethod/FormBuildValidatorRector/FormBuildValidatorRectorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/ClassMethod/FormBuildValidatorRector/FormBuildValidatorRectorTest.php -------------------------------------------------------------------------------- /tests/TestCase/Rector/ClassMethod/FormBuildValidatorRector/config/configured_rule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/ClassMethod/FormBuildValidatorRector/config/configured_rule.php -------------------------------------------------------------------------------- /tests/TestCase/Rector/ClassMethod/FormExecuteToProcessRector/Fixture/fixture.php.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/ClassMethod/FormExecuteToProcessRector/Fixture/fixture.php.inc -------------------------------------------------------------------------------- /tests/TestCase/Rector/ClassMethod/FormExecuteToProcessRector/Fixture/skip_when_process_exists.php.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/ClassMethod/FormExecuteToProcessRector/Fixture/skip_when_process_exists.php.inc -------------------------------------------------------------------------------- /tests/TestCase/Rector/ClassMethod/FormExecuteToProcessRector/FormExecuteToProcessRectorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/ClassMethod/FormExecuteToProcessRector/FormExecuteToProcessRectorTest.php -------------------------------------------------------------------------------- /tests/TestCase/Rector/ClassMethod/FormExecuteToProcessRector/config/configured_rule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/ClassMethod/FormExecuteToProcessRector/config/configured_rule.php -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/AddMethodCallArgsRector/AddMethodCallArgsRectorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/AddMethodCallArgsRector/AddMethodCallArgsRectorTest.php -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/AddMethodCallArgsRector/Fixture/fixture.php.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/AddMethodCallArgsRector/Fixture/fixture.php.inc -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/AddMethodCallArgsRector/Source/SomeModelType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/AddMethodCallArgsRector/Source/SomeModelType.php -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/AddMethodCallArgsRector/config/configured_rule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/AddMethodCallArgsRector/config/configured_rule.php -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/ArrayToFluentCallRector/ArrayToFluentCallRectorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/ArrayToFluentCallRector/ArrayToFluentCallRectorTest.php -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/ArrayToFluentCallRector/Fixture/array_to_fluent_call.php.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/ArrayToFluentCallRector/Fixture/array_to_fluent_call.php.inc -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/ArrayToFluentCallRector/Fixture/fluent_factory.php.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/ArrayToFluentCallRector/Fixture/fluent_factory.php.inc -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/ArrayToFluentCallRector/Source/ConfigurableClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/ArrayToFluentCallRector/Source/ConfigurableClass.php -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/ArrayToFluentCallRector/Source/FactoryClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/ArrayToFluentCallRector/Source/FactoryClass.php -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/ArrayToFluentCallRector/config/configured_rule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/ArrayToFluentCallRector/config/configured_rule.php -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/ChangeEntityTraitSetArrayToPatch/ChangeEntityTraitSetArrayToPatchTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/ChangeEntityTraitSetArrayToPatch/ChangeEntityTraitSetArrayToPatchTest.php -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/ChangeEntityTraitSetArrayToPatch/Fixture/fixture.php.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/ChangeEntityTraitSetArrayToPatch/Fixture/fixture.php.inc -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/ChangeEntityTraitSetArrayToPatch/Source/OtherClassWithSetMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/ChangeEntityTraitSetArrayToPatch/Source/OtherClassWithSetMethod.php -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/ChangeEntityTraitSetArrayToPatch/config/configured_rule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/ChangeEntityTraitSetArrayToPatch/config/configured_rule.php -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/EntityPatchRector/EntityPatchRectorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/EntityPatchRector/EntityPatchRectorTest.php -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/EntityPatchRector/Fixture/fixture.php.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/EntityPatchRector/Fixture/fixture.php.inc -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/EntityPatchRector/Fixture/skip_non_entity.php.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/EntityPatchRector/Fixture/skip_non_entity.php.inc -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/EntityPatchRector/config/configured_rule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/EntityPatchRector/config/configured_rule.php -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/ModalToGetSetRector/Fixture/fixture.php.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/ModalToGetSetRector/Fixture/fixture.php.inc -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/ModalToGetSetRector/Fixture/fixture2.php.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/ModalToGetSetRector/Fixture/fixture2.php.inc -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/ModalToGetSetRector/Fixture/fixture3.php.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/ModalToGetSetRector/Fixture/fixture3.php.inc -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/ModalToGetSetRector/Fixture/fixture4.php.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/ModalToGetSetRector/Fixture/fixture4.php.inc -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/ModalToGetSetRector/ModalToGetSetRectorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/ModalToGetSetRector/ModalToGetSetRectorTest.php -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/ModalToGetSetRector/Source/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/ModalToGetSetRector/Source/Entity.php -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/ModalToGetSetRector/Source/SomeModelType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/ModalToGetSetRector/Source/SomeModelType.php -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/ModalToGetSetRector/config/configured_rule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/ModalToGetSetRector/config/configured_rule.php -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/NewEntityToNewEmptyEntityRector/Fixture/fixture.php.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/NewEntityToNewEmptyEntityRector/Fixture/fixture.php.inc -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/NewEntityToNewEmptyEntityRector/NewEntityToNewEmptyEntityRectorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/NewEntityToNewEmptyEntityRector/NewEntityToNewEmptyEntityRectorTest.php -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/NewEntityToNewEmptyEntityRector/config/configured_rule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/NewEntityToNewEmptyEntityRector/config/configured_rule.php -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/NewExprToFuncRector/Fixture/aggregate_functions.php.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/NewExprToFuncRector/Fixture/aggregate_functions.php.inc -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/NewExprToFuncRector/Fixture/skip_non_func_methods.php.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/NewExprToFuncRector/Fixture/skip_non_func_methods.php.inc -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/NewExprToFuncRector/Fixture/sql_functions.php.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/NewExprToFuncRector/Fixture/sql_functions.php.inc -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/NewExprToFuncRector/NewExprToFuncRectorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/NewExprToFuncRector/NewExprToFuncRectorTest.php -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/NewExprToFuncRector/config/configured_rule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/NewExprToFuncRector/config/configured_rule.php -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/OptionsArrayToNamedParametersRector/Fixture/options_to_named_parameters.php.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/OptionsArrayToNamedParametersRector/Fixture/options_to_named_parameters.php.inc -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/OptionsArrayToNamedParametersRector/OptionsArrayToNamedParametersRectorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/OptionsArrayToNamedParametersRector/OptionsArrayToNamedParametersRectorTest.php -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/OptionsArrayToNamedParametersRector/Source/ConfigurableClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/OptionsArrayToNamedParametersRector/Source/ConfigurableClass.php -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/OptionsArrayToNamedParametersRector/config/configured_rule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/OptionsArrayToNamedParametersRector/config/configured_rule.php -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/PaginatorCounterFormatRector/Fixture/fixture.php.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/PaginatorCounterFormatRector/Fixture/fixture.php.inc -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/PaginatorCounterFormatRector/PaginatorCounterFormatRectorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/PaginatorCounterFormatRector/PaginatorCounterFormatRectorTest.php -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/PaginatorCounterFormatRector/config/configured_rule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/PaginatorCounterFormatRector/config/configured_rule.php -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/QueryParamAccessRector/Fixture/fixture.php.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/QueryParamAccessRector/Fixture/fixture.php.inc -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/QueryParamAccessRector/Fixture/skip_other_params.php.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/QueryParamAccessRector/Fixture/skip_other_params.php.inc -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/QueryParamAccessRector/QueryParamAccessRectorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/QueryParamAccessRector/QueryParamAccessRectorTest.php -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/QueryParamAccessRector/config/configured_rule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/QueryParamAccessRector/config/configured_rule.php -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/RemoveIntermediaryMethodRector/Fixture/fixture.php.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/RemoveIntermediaryMethodRector/Fixture/fixture.php.inc -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/RemoveIntermediaryMethodRector/RemoveIntermediaryMethodRectorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/RemoveIntermediaryMethodRector/RemoveIntermediaryMethodRectorTest.php -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/RemoveIntermediaryMethodRector/config/configured_rule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/RemoveIntermediaryMethodRector/config/configured_rule.php -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/RemoveMethodCallArgsRector/Fixture/fixture.php.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/RemoveMethodCallArgsRector/Fixture/fixture.php.inc -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/RemoveMethodCallArgsRector/RemoveMethodCallArgsRectorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/RemoveMethodCallArgsRector/RemoveMethodCallArgsRectorTest.php -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/RemoveMethodCallArgsRector/Source/SomeModelType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/RemoveMethodCallArgsRector/Source/SomeModelType.php -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/RemoveMethodCallArgsRector/config/configured_rule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/RemoveMethodCallArgsRector/config/configured_rule.php -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/RenameMethodCallBasedOnParameterRector/Fixture/fixture.php.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/RenameMethodCallBasedOnParameterRector/Fixture/fixture.php.inc -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/RenameMethodCallBasedOnParameterRector/Fixture/skip_fixture2.php.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/RenameMethodCallBasedOnParameterRector/Fixture/skip_fixture2.php.inc -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/RenameMethodCallBasedOnParameterRector/RenameMethodCallBasedOnParameterRectorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/RenameMethodCallBasedOnParameterRector/RenameMethodCallBasedOnParameterRectorTest.php -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/RenameMethodCallBasedOnParameterRector/Source/SomeModelType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/RenameMethodCallBasedOnParameterRector/Source/SomeModelType.php -------------------------------------------------------------------------------- /tests/TestCase/Rector/MethodCall/RenameMethodCallBasedOnParameterRector/config/configured_rule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/MethodCall/RenameMethodCallBasedOnParameterRector/config/configured_rule.php -------------------------------------------------------------------------------- /tests/TestCase/Rector/Namespace_/AppUsesStaticCallToUseStatementRector/AppUsesStaticCallToUseStatementRectorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/Namespace_/AppUsesStaticCallToUseStatementRector/AppUsesStaticCallToUseStatementRectorTest.php -------------------------------------------------------------------------------- /tests/TestCase/Rector/Namespace_/AppUsesStaticCallToUseStatementRector/Fixture/cakephp_controller.php.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/Namespace_/AppUsesStaticCallToUseStatementRector/Fixture/cakephp_controller.php.inc -------------------------------------------------------------------------------- /tests/TestCase/Rector/Namespace_/AppUsesStaticCallToUseStatementRector/Fixture/cakephp_controller_with_strict_types.php.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/Namespace_/AppUsesStaticCallToUseStatementRector/Fixture/cakephp_controller_with_strict_types.php.inc -------------------------------------------------------------------------------- /tests/TestCase/Rector/Namespace_/AppUsesStaticCallToUseStatementRector/Fixture/cakephp_fixture.php.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/Namespace_/AppUsesStaticCallToUseStatementRector/Fixture/cakephp_fixture.php.inc -------------------------------------------------------------------------------- /tests/TestCase/Rector/Namespace_/AppUsesStaticCallToUseStatementRector/Fixture/cakephp_import_namespaces_up.php.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/Namespace_/AppUsesStaticCallToUseStatementRector/Fixture/cakephp_import_namespaces_up.php.inc -------------------------------------------------------------------------------- /tests/TestCase/Rector/Namespace_/AppUsesStaticCallToUseStatementRector/Fixture/fixture.php.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/Namespace_/AppUsesStaticCallToUseStatementRector/Fixture/fixture.php.inc -------------------------------------------------------------------------------- /tests/TestCase/Rector/Namespace_/AppUsesStaticCallToUseStatementRector/Fixture/inside_if.php.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/Namespace_/AppUsesStaticCallToUseStatementRector/Fixture/inside_if.php.inc -------------------------------------------------------------------------------- /tests/TestCase/Rector/Namespace_/AppUsesStaticCallToUseStatementRector/Fixture/skip_different_static_call.php.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/Namespace_/AppUsesStaticCallToUseStatementRector/Fixture/skip_different_static_call.php.inc -------------------------------------------------------------------------------- /tests/TestCase/Rector/Namespace_/AppUsesStaticCallToUseStatementRector/Fixture/without_namespace.php.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/Namespace_/AppUsesStaticCallToUseStatementRector/Fixture/without_namespace.php.inc -------------------------------------------------------------------------------- /tests/TestCase/Rector/Namespace_/AppUsesStaticCallToUseStatementRector/Fixture/without_namespace_with_strict_types.php.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/Namespace_/AppUsesStaticCallToUseStatementRector/Fixture/without_namespace_with_strict_types.php.inc -------------------------------------------------------------------------------- /tests/TestCase/Rector/Namespace_/AppUsesStaticCallToUseStatementRector/Source/App.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cakephp/upgrade/HEAD/tests/TestCase/Rector/Namespace_/AppUsesStaticCallToUseStatementRector/Source/App.php -------------------------------------------------------------------------------- /tests/TestCase/Rector/Namespace_/AppUsesStaticCallToUseStatementRector/Source/Xml.php: -------------------------------------------------------------------------------- 1 |