├── .github └── workflows │ ├── code_analysis.yaml │ ├── downgraded_release.yaml │ └── tests.yaml ├── LICENSE ├── README.md ├── banner.png ├── commands ├── MakeRuleCommand.php └── make-rule.php ├── composer.json ├── config ├── config.php └── sets │ ├── laravel-array-str-functions-to-static-call.php │ ├── laravel-arrayaccess-to-method-call.php │ ├── laravel-code-quality.php │ ├── laravel-collection.php │ ├── laravel-container-string-to-fully-qualified-name.php │ ├── laravel-eloquent-magic-method-to-query-builder.php │ ├── laravel-facade-aliases-to-full-names.php │ ├── laravel-factories.php │ ├── laravel-if-helpers.php │ ├── laravel-legacy-factories-to-classes.php │ ├── laravel-static-to-injection.php │ ├── laravel-testing.php │ ├── laravel-type-declarations.php │ ├── laravel100.php │ ├── laravel110.php │ ├── laravel120.php │ ├── laravel50.php │ ├── laravel51.php │ ├── laravel52.php │ ├── laravel53.php │ ├── laravel54.php │ ├── laravel55.php │ ├── laravel56.php │ ├── laravel57.php │ ├── laravel58.php │ ├── laravel60.php │ ├── laravel70.php │ ├── laravel80.php │ ├── laravel90.php │ ├── level │ ├── up-to-laravel-100.php │ ├── up-to-laravel-110.php │ ├── up-to-laravel-120.php │ ├── up-to-laravel-51.php │ ├── up-to-laravel-52.php │ ├── up-to-laravel-53.php │ ├── up-to-laravel-54.php │ ├── up-to-laravel-55.php │ ├── up-to-laravel-56.php │ ├── up-to-laravel-57.php │ ├── up-to-laravel-58.php │ ├── up-to-laravel-60.php │ ├── up-to-laravel-70.php │ ├── up-to-laravel-80.php │ └── up-to-laravel-90.php │ ├── lumen.php │ └── packages │ ├── cashier │ ├── cashier-13.php │ ├── cashier-14.php │ └── level │ │ ├── up-to-cashier-13.php │ │ └── up-to-cashier-14.php │ ├── faker │ └── faker-10.php │ └── livewire │ ├── level │ └── up-to-livewire-30.php │ └── livewire-30.php ├── docs └── rector_rules_overview.md ├── rector.php ├── src ├── AbstractRector.php ├── Contract │ └── ValueObject │ │ └── ArgumentFuncCallToMethodCallInterface.php ├── NodeAnalyzer │ ├── ApplicationAnalyzer.php │ ├── CallUserFuncAnalyzer.php │ ├── ExpectedClassMethodAnalyzer.php │ ├── FacadeAssertionAnalyzer.php │ ├── LaravelServiceAnalyzer.php │ ├── LumenRouteRegisteringMethodAnalyzer.php │ ├── ModelAnalyzer.php │ ├── QueryBuilderAnalyzer.php │ ├── RelationshipAnalyzer.php │ └── StaticCallAnalyzer.php ├── NodeFactory │ ├── AppAssignFactory.php │ ├── DispatchableTestsMethodsFactory.php │ ├── ModelFactoryNodeFactory.php │ └── RouterRegisterNodeAnalyzer.php ├── Rector │ ├── ArrayDimFetch │ │ ├── ArrayToArrGetRector.php │ │ ├── EnvVariableToEnvHelperRector.php │ │ ├── RequestVariablesToRequestFacadeRector.php │ │ ├── ServerVariableToRequestFacadeRector.php │ │ └── SessionVariableToSessionFacadeRector.php │ ├── Assign │ │ └── CallOnAppArrayAccessToStandaloneAssignRector.php │ ├── BooleanNot │ │ └── AvoidNegatedCollectionContainsOrDoesntContainRector.php │ ├── Cast │ │ └── DatabaseExpressionCastsToMethodCallRector.php │ ├── ClassMethod │ │ ├── AddArgumentDefaultValueRector.php │ │ ├── AddGenericReturnTypeToRelationsRector.php │ │ ├── AddParentBootToModelClassMethodRector.php │ │ ├── AddParentRegisterToEventServiceProviderRector.php │ │ ├── MakeModelAttributesAndScopesProtectedRector.php │ │ ├── MigrateToSimplifiedAttributeRector.php │ │ └── ScopeNamedClassMethodToScopeAttributedClassMethodRector.php │ ├── Class_ │ │ ├── AddExtendsAnnotationToModelFactoriesRector.php │ │ ├── AddHasFactoryToModelsRector.php │ │ ├── AddMockConsoleOutputFalseToConsoleTestsRector.php │ │ ├── AnonymousMigrationsRector.php │ │ ├── CashierStripeOptionsToStripeRector.php │ │ ├── LivewireComponentComputedMethodToComputedAttributeRector.php │ │ ├── LivewireComponentQueryStringToUrlAttributeRector.php │ │ ├── ModelCastsPropertyToCastsMethodRector.php │ │ ├── PropertyDeferToDeferrableProviderToRector.php │ │ ├── RemoveModelPropertyFromFactoriesRector.php │ │ ├── ReplaceExpectsMethodsInTestsRector.php │ │ ├── UnifyModelDatesWithCastsRector.php │ │ └── UseForwardsCallsTraitRector.php │ ├── Coalesce │ │ └── ApplyDefaultInsteadOfNullCoalesceRector.php │ ├── Empty_ │ │ └── EmptyToBlankAndFilledFuncRector.php │ ├── Expr │ │ ├── AppEnvironmentComparisonToParameterRector.php │ │ └── SubStrToStartsWithOrEndsWithStaticMethodCallRector │ │ │ └── SubStrToStartsWithOrEndsWithStaticMethodCallRector.php │ ├── FuncCall │ │ ├── AppToResolveRector.php │ │ ├── ArgumentFuncCallToMethodCallRector.php │ │ ├── ConfigToTypedConfigMethodCallRector.php │ │ ├── DispatchNonShouldQueueToDispatchSyncRector.php │ │ ├── FactoryFuncCallToStaticCallRector.php │ │ ├── HelperFuncCallToFacadeClassRector.php │ │ ├── NotFilledBlankFuncCallToBlankFilledFuncCallRector.php │ │ ├── NowFuncWithStartOfDayMethodCallToTodayFuncRector.php │ │ ├── RemoveDumpDataDeadCodeRector.php │ │ ├── RemoveRedundantValueCallsRector.php │ │ ├── RemoveRedundantWithCallsRector.php │ │ ├── SleepFuncToSleepStaticCallRector.php │ │ ├── ThrowIfAndThrowUnlessExceptionsToUseClassStringRector.php │ │ └── TypeHintTappableCallRector.php │ ├── If_ │ │ ├── AbortIfRector.php │ │ ├── ReportIfRector.php │ │ └── ThrowIfRector.php │ ├── MethodCall │ │ ├── AssertSeeToAssertSeeHtmlRector.php │ │ ├── AssertStatusToAssertMethodRector.php │ │ ├── AvoidNegatedCollectionFilterOrRejectRector.php │ │ ├── ChangeQueryWhereDateValueWithCarbonRector.php │ │ ├── ContainerBindConcreteWithClosureOnlyRector.php │ │ ├── ConvertEnumerableToArrayToAllRector.php │ │ ├── DatabaseExpressionToStringToMethodCallRector.php │ │ ├── EloquentOrderByToLatestOrOldestRector.php │ │ ├── EloquentWhereRelationTypeHintingParameterRector.php │ │ ├── EloquentWhereTypeHintClosureParameterRector.php │ │ ├── FactoryApplyingStatesRector.php │ │ ├── JsonCallToExplicitJsonCallRector.php │ │ ├── LumenRoutesStringActionToUsesArrayRector.php │ │ ├── LumenRoutesStringMiddlewareToArrayRector.php │ │ ├── RedirectBackToBackHelperRector.php │ │ ├── RedirectRouteToToRouteHelperRector.php │ │ ├── RefactorBlueprintGeometryColumnsRector.php │ │ ├── ReplaceServiceContainerCallArgRector.php │ │ ├── ReplaceWithoutJobsEventsAndNotificationsWithFacadeFakeRector.php │ │ ├── ResponseHelperCallToJsonResponseRector.php │ │ ├── ReverseConditionableMethodCallRector.php │ │ ├── UnaliasCollectionMethodsRector.php │ │ ├── UseComponentPropertyWithinCommandsRector.php │ │ ├── ValidationRuleArrayStringValueToArrayRector.php │ │ └── WhereToWhereLikeRector.php │ ├── Namespace_ │ │ └── FactoryDefinitionRector.php │ ├── New_ │ │ └── AddGuardToLoginEventRector.php │ ├── PropertyFetch │ │ ├── OptionalToNullsafeOperatorRector.php │ │ ├── ReplaceFakerInstanceWithHelperRector.php │ │ └── ReplaceFakerPropertyFetchWithMethodCallRector.php │ └── StaticCall │ │ ├── AssertWithClassStringToTypeHintedClosureRector.php │ │ ├── CarbonSetTestNowToTravelToRector.php │ │ ├── CarbonToDateFacadeRector.php │ │ ├── DispatchToHelperFunctionsRector.php │ │ ├── EloquentMagicMethodToQueryBuilderRector.php │ │ ├── MinutesToSecondsInCacheRector.php │ │ ├── Redirect301ToPermanentRedirectRector.php │ │ ├── ReplaceAssertTimesSendWithAssertSentTimesRector.php │ │ ├── RequestStaticValidateToInjectRector.php │ │ └── RouteActionCallableRector.php ├── Set │ ├── LaravelLevelSetList.php │ ├── LaravelSetList.php │ ├── LaravelSetProvider.php │ └── Packages │ │ ├── Cashier │ │ ├── CashierLevelSetList.php │ │ └── CashierSetList.php │ │ ├── Faker │ │ └── FakerSetList.php │ │ └── Livewire │ │ ├── LivewireLevelSetList.php │ │ └── LivewireSetList.php └── ValueObject │ ├── AddArgumentDefaultValue.php │ ├── ApplyDefaultInsteadOfNullCoalesce.php │ ├── ArgumentFuncCallToMethodCall.php │ ├── ArrayFuncCallToMethodCall.php │ ├── ExpectedClassMethodMethodCalls.php │ ├── ForwardingCall.php │ ├── ReplaceRequestKeyAndMethodValue.php │ ├── ReplaceServiceContainerCallArg.php │ ├── ServiceNameTypeAndVariableName.php │ └── TypeToTimeMethodAndPosition.php └── templates ├── configurable-config.php.template ├── configurable-rule.php.template ├── fixture.php.inc.template ├── non-configurable-config.php.template ├── non-configurable-rule.php.template └── test.php.template /.github/workflows/code_analysis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/.github/workflows/code_analysis.yaml -------------------------------------------------------------------------------- /.github/workflows/downgraded_release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/.github/workflows/downgraded_release.yaml -------------------------------------------------------------------------------- /.github/workflows/tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/.github/workflows/tests.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/README.md -------------------------------------------------------------------------------- /banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/banner.png -------------------------------------------------------------------------------- /commands/MakeRuleCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/commands/MakeRuleCommand.php -------------------------------------------------------------------------------- /commands/make-rule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/commands/make-rule.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/composer.json -------------------------------------------------------------------------------- /config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/config/config.php -------------------------------------------------------------------------------- /config/sets/laravel-array-str-functions-to-static-call.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/config/sets/laravel-array-str-functions-to-static-call.php -------------------------------------------------------------------------------- /config/sets/laravel-arrayaccess-to-method-call.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/config/sets/laravel-arrayaccess-to-method-call.php -------------------------------------------------------------------------------- /config/sets/laravel-code-quality.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/config/sets/laravel-code-quality.php -------------------------------------------------------------------------------- /config/sets/laravel-collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/config/sets/laravel-collection.php -------------------------------------------------------------------------------- /config/sets/laravel-container-string-to-fully-qualified-name.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/config/sets/laravel-container-string-to-fully-qualified-name.php -------------------------------------------------------------------------------- /config/sets/laravel-eloquent-magic-method-to-query-builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/config/sets/laravel-eloquent-magic-method-to-query-builder.php -------------------------------------------------------------------------------- /config/sets/laravel-facade-aliases-to-full-names.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/config/sets/laravel-facade-aliases-to-full-names.php -------------------------------------------------------------------------------- /config/sets/laravel-factories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/config/sets/laravel-factories.php -------------------------------------------------------------------------------- /config/sets/laravel-if-helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/config/sets/laravel-if-helpers.php -------------------------------------------------------------------------------- /config/sets/laravel-legacy-factories-to-classes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/config/sets/laravel-legacy-factories-to-classes.php -------------------------------------------------------------------------------- /config/sets/laravel-static-to-injection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/config/sets/laravel-static-to-injection.php -------------------------------------------------------------------------------- /config/sets/laravel-testing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/config/sets/laravel-testing.php -------------------------------------------------------------------------------- /config/sets/laravel-type-declarations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/config/sets/laravel-type-declarations.php -------------------------------------------------------------------------------- /config/sets/laravel100.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/config/sets/laravel100.php -------------------------------------------------------------------------------- /config/sets/laravel110.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/config/sets/laravel110.php -------------------------------------------------------------------------------- /config/sets/laravel120.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/config/sets/laravel120.php -------------------------------------------------------------------------------- /config/sets/laravel50.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/config/sets/laravel50.php -------------------------------------------------------------------------------- /config/sets/laravel51.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/config/sets/laravel51.php -------------------------------------------------------------------------------- /config/sets/laravel52.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/config/sets/laravel52.php -------------------------------------------------------------------------------- /config/sets/laravel53.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/config/sets/laravel53.php -------------------------------------------------------------------------------- /config/sets/laravel54.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/config/sets/laravel54.php -------------------------------------------------------------------------------- /config/sets/laravel55.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/config/sets/laravel55.php -------------------------------------------------------------------------------- /config/sets/laravel56.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/config/sets/laravel56.php -------------------------------------------------------------------------------- /config/sets/laravel57.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/config/sets/laravel57.php -------------------------------------------------------------------------------- /config/sets/laravel58.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/config/sets/laravel58.php -------------------------------------------------------------------------------- /config/sets/laravel60.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/config/sets/laravel60.php -------------------------------------------------------------------------------- /config/sets/laravel70.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/config/sets/laravel70.php -------------------------------------------------------------------------------- /config/sets/laravel80.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/config/sets/laravel80.php -------------------------------------------------------------------------------- /config/sets/laravel90.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/config/sets/laravel90.php -------------------------------------------------------------------------------- /config/sets/level/up-to-laravel-100.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/config/sets/level/up-to-laravel-100.php -------------------------------------------------------------------------------- /config/sets/level/up-to-laravel-110.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/config/sets/level/up-to-laravel-110.php -------------------------------------------------------------------------------- /config/sets/level/up-to-laravel-120.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/config/sets/level/up-to-laravel-120.php -------------------------------------------------------------------------------- /config/sets/level/up-to-laravel-51.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/config/sets/level/up-to-laravel-51.php -------------------------------------------------------------------------------- /config/sets/level/up-to-laravel-52.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/config/sets/level/up-to-laravel-52.php -------------------------------------------------------------------------------- /config/sets/level/up-to-laravel-53.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/config/sets/level/up-to-laravel-53.php -------------------------------------------------------------------------------- /config/sets/level/up-to-laravel-54.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/config/sets/level/up-to-laravel-54.php -------------------------------------------------------------------------------- /config/sets/level/up-to-laravel-55.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/config/sets/level/up-to-laravel-55.php -------------------------------------------------------------------------------- /config/sets/level/up-to-laravel-56.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/config/sets/level/up-to-laravel-56.php -------------------------------------------------------------------------------- /config/sets/level/up-to-laravel-57.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/config/sets/level/up-to-laravel-57.php -------------------------------------------------------------------------------- /config/sets/level/up-to-laravel-58.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/config/sets/level/up-to-laravel-58.php -------------------------------------------------------------------------------- /config/sets/level/up-to-laravel-60.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/config/sets/level/up-to-laravel-60.php -------------------------------------------------------------------------------- /config/sets/level/up-to-laravel-70.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/config/sets/level/up-to-laravel-70.php -------------------------------------------------------------------------------- /config/sets/level/up-to-laravel-80.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/config/sets/level/up-to-laravel-80.php -------------------------------------------------------------------------------- /config/sets/level/up-to-laravel-90.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/config/sets/level/up-to-laravel-90.php -------------------------------------------------------------------------------- /config/sets/lumen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/config/sets/lumen.php -------------------------------------------------------------------------------- /config/sets/packages/cashier/cashier-13.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/config/sets/packages/cashier/cashier-13.php -------------------------------------------------------------------------------- /config/sets/packages/cashier/cashier-14.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/config/sets/packages/cashier/cashier-14.php -------------------------------------------------------------------------------- /config/sets/packages/cashier/level/up-to-cashier-13.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/config/sets/packages/cashier/level/up-to-cashier-13.php -------------------------------------------------------------------------------- /config/sets/packages/cashier/level/up-to-cashier-14.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/config/sets/packages/cashier/level/up-to-cashier-14.php -------------------------------------------------------------------------------- /config/sets/packages/faker/faker-10.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/config/sets/packages/faker/faker-10.php -------------------------------------------------------------------------------- /config/sets/packages/livewire/level/up-to-livewire-30.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/config/sets/packages/livewire/level/up-to-livewire-30.php -------------------------------------------------------------------------------- /config/sets/packages/livewire/livewire-30.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/config/sets/packages/livewire/livewire-30.php -------------------------------------------------------------------------------- /docs/rector_rules_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/docs/rector_rules_overview.md -------------------------------------------------------------------------------- /rector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/rector.php -------------------------------------------------------------------------------- /src/AbstractRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/AbstractRector.php -------------------------------------------------------------------------------- /src/Contract/ValueObject/ArgumentFuncCallToMethodCallInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Contract/ValueObject/ArgumentFuncCallToMethodCallInterface.php -------------------------------------------------------------------------------- /src/NodeAnalyzer/ApplicationAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/NodeAnalyzer/ApplicationAnalyzer.php -------------------------------------------------------------------------------- /src/NodeAnalyzer/CallUserFuncAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/NodeAnalyzer/CallUserFuncAnalyzer.php -------------------------------------------------------------------------------- /src/NodeAnalyzer/ExpectedClassMethodAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/NodeAnalyzer/ExpectedClassMethodAnalyzer.php -------------------------------------------------------------------------------- /src/NodeAnalyzer/FacadeAssertionAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/NodeAnalyzer/FacadeAssertionAnalyzer.php -------------------------------------------------------------------------------- /src/NodeAnalyzer/LaravelServiceAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/NodeAnalyzer/LaravelServiceAnalyzer.php -------------------------------------------------------------------------------- /src/NodeAnalyzer/LumenRouteRegisteringMethodAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/NodeAnalyzer/LumenRouteRegisteringMethodAnalyzer.php -------------------------------------------------------------------------------- /src/NodeAnalyzer/ModelAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/NodeAnalyzer/ModelAnalyzer.php -------------------------------------------------------------------------------- /src/NodeAnalyzer/QueryBuilderAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/NodeAnalyzer/QueryBuilderAnalyzer.php -------------------------------------------------------------------------------- /src/NodeAnalyzer/RelationshipAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/NodeAnalyzer/RelationshipAnalyzer.php -------------------------------------------------------------------------------- /src/NodeAnalyzer/StaticCallAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/NodeAnalyzer/StaticCallAnalyzer.php -------------------------------------------------------------------------------- /src/NodeFactory/AppAssignFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/NodeFactory/AppAssignFactory.php -------------------------------------------------------------------------------- /src/NodeFactory/DispatchableTestsMethodsFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/NodeFactory/DispatchableTestsMethodsFactory.php -------------------------------------------------------------------------------- /src/NodeFactory/ModelFactoryNodeFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/NodeFactory/ModelFactoryNodeFactory.php -------------------------------------------------------------------------------- /src/NodeFactory/RouterRegisterNodeAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/NodeFactory/RouterRegisterNodeAnalyzer.php -------------------------------------------------------------------------------- /src/Rector/ArrayDimFetch/ArrayToArrGetRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/ArrayDimFetch/ArrayToArrGetRector.php -------------------------------------------------------------------------------- /src/Rector/ArrayDimFetch/EnvVariableToEnvHelperRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/ArrayDimFetch/EnvVariableToEnvHelperRector.php -------------------------------------------------------------------------------- /src/Rector/ArrayDimFetch/RequestVariablesToRequestFacadeRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/ArrayDimFetch/RequestVariablesToRequestFacadeRector.php -------------------------------------------------------------------------------- /src/Rector/ArrayDimFetch/ServerVariableToRequestFacadeRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/ArrayDimFetch/ServerVariableToRequestFacadeRector.php -------------------------------------------------------------------------------- /src/Rector/ArrayDimFetch/SessionVariableToSessionFacadeRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/ArrayDimFetch/SessionVariableToSessionFacadeRector.php -------------------------------------------------------------------------------- /src/Rector/Assign/CallOnAppArrayAccessToStandaloneAssignRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/Assign/CallOnAppArrayAccessToStandaloneAssignRector.php -------------------------------------------------------------------------------- /src/Rector/BooleanNot/AvoidNegatedCollectionContainsOrDoesntContainRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/BooleanNot/AvoidNegatedCollectionContainsOrDoesntContainRector.php -------------------------------------------------------------------------------- /src/Rector/Cast/DatabaseExpressionCastsToMethodCallRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/Cast/DatabaseExpressionCastsToMethodCallRector.php -------------------------------------------------------------------------------- /src/Rector/ClassMethod/AddArgumentDefaultValueRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/ClassMethod/AddArgumentDefaultValueRector.php -------------------------------------------------------------------------------- /src/Rector/ClassMethod/AddGenericReturnTypeToRelationsRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/ClassMethod/AddGenericReturnTypeToRelationsRector.php -------------------------------------------------------------------------------- /src/Rector/ClassMethod/AddParentBootToModelClassMethodRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/ClassMethod/AddParentBootToModelClassMethodRector.php -------------------------------------------------------------------------------- /src/Rector/ClassMethod/AddParentRegisterToEventServiceProviderRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/ClassMethod/AddParentRegisterToEventServiceProviderRector.php -------------------------------------------------------------------------------- /src/Rector/ClassMethod/MakeModelAttributesAndScopesProtectedRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/ClassMethod/MakeModelAttributesAndScopesProtectedRector.php -------------------------------------------------------------------------------- /src/Rector/ClassMethod/MigrateToSimplifiedAttributeRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/ClassMethod/MigrateToSimplifiedAttributeRector.php -------------------------------------------------------------------------------- /src/Rector/ClassMethod/ScopeNamedClassMethodToScopeAttributedClassMethodRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/ClassMethod/ScopeNamedClassMethodToScopeAttributedClassMethodRector.php -------------------------------------------------------------------------------- /src/Rector/Class_/AddExtendsAnnotationToModelFactoriesRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/Class_/AddExtendsAnnotationToModelFactoriesRector.php -------------------------------------------------------------------------------- /src/Rector/Class_/AddHasFactoryToModelsRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/Class_/AddHasFactoryToModelsRector.php -------------------------------------------------------------------------------- /src/Rector/Class_/AddMockConsoleOutputFalseToConsoleTestsRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/Class_/AddMockConsoleOutputFalseToConsoleTestsRector.php -------------------------------------------------------------------------------- /src/Rector/Class_/AnonymousMigrationsRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/Class_/AnonymousMigrationsRector.php -------------------------------------------------------------------------------- /src/Rector/Class_/CashierStripeOptionsToStripeRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/Class_/CashierStripeOptionsToStripeRector.php -------------------------------------------------------------------------------- /src/Rector/Class_/LivewireComponentComputedMethodToComputedAttributeRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/Class_/LivewireComponentComputedMethodToComputedAttributeRector.php -------------------------------------------------------------------------------- /src/Rector/Class_/LivewireComponentQueryStringToUrlAttributeRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/Class_/LivewireComponentQueryStringToUrlAttributeRector.php -------------------------------------------------------------------------------- /src/Rector/Class_/ModelCastsPropertyToCastsMethodRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/Class_/ModelCastsPropertyToCastsMethodRector.php -------------------------------------------------------------------------------- /src/Rector/Class_/PropertyDeferToDeferrableProviderToRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/Class_/PropertyDeferToDeferrableProviderToRector.php -------------------------------------------------------------------------------- /src/Rector/Class_/RemoveModelPropertyFromFactoriesRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/Class_/RemoveModelPropertyFromFactoriesRector.php -------------------------------------------------------------------------------- /src/Rector/Class_/ReplaceExpectsMethodsInTestsRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/Class_/ReplaceExpectsMethodsInTestsRector.php -------------------------------------------------------------------------------- /src/Rector/Class_/UnifyModelDatesWithCastsRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/Class_/UnifyModelDatesWithCastsRector.php -------------------------------------------------------------------------------- /src/Rector/Class_/UseForwardsCallsTraitRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/Class_/UseForwardsCallsTraitRector.php -------------------------------------------------------------------------------- /src/Rector/Coalesce/ApplyDefaultInsteadOfNullCoalesceRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/Coalesce/ApplyDefaultInsteadOfNullCoalesceRector.php -------------------------------------------------------------------------------- /src/Rector/Empty_/EmptyToBlankAndFilledFuncRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/Empty_/EmptyToBlankAndFilledFuncRector.php -------------------------------------------------------------------------------- /src/Rector/Expr/AppEnvironmentComparisonToParameterRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/Expr/AppEnvironmentComparisonToParameterRector.php -------------------------------------------------------------------------------- /src/Rector/Expr/SubStrToStartsWithOrEndsWithStaticMethodCallRector/SubStrToStartsWithOrEndsWithStaticMethodCallRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/Expr/SubStrToStartsWithOrEndsWithStaticMethodCallRector/SubStrToStartsWithOrEndsWithStaticMethodCallRector.php -------------------------------------------------------------------------------- /src/Rector/FuncCall/AppToResolveRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/FuncCall/AppToResolveRector.php -------------------------------------------------------------------------------- /src/Rector/FuncCall/ArgumentFuncCallToMethodCallRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/FuncCall/ArgumentFuncCallToMethodCallRector.php -------------------------------------------------------------------------------- /src/Rector/FuncCall/ConfigToTypedConfigMethodCallRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/FuncCall/ConfigToTypedConfigMethodCallRector.php -------------------------------------------------------------------------------- /src/Rector/FuncCall/DispatchNonShouldQueueToDispatchSyncRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/FuncCall/DispatchNonShouldQueueToDispatchSyncRector.php -------------------------------------------------------------------------------- /src/Rector/FuncCall/FactoryFuncCallToStaticCallRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/FuncCall/FactoryFuncCallToStaticCallRector.php -------------------------------------------------------------------------------- /src/Rector/FuncCall/HelperFuncCallToFacadeClassRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/FuncCall/HelperFuncCallToFacadeClassRector.php -------------------------------------------------------------------------------- /src/Rector/FuncCall/NotFilledBlankFuncCallToBlankFilledFuncCallRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/FuncCall/NotFilledBlankFuncCallToBlankFilledFuncCallRector.php -------------------------------------------------------------------------------- /src/Rector/FuncCall/NowFuncWithStartOfDayMethodCallToTodayFuncRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/FuncCall/NowFuncWithStartOfDayMethodCallToTodayFuncRector.php -------------------------------------------------------------------------------- /src/Rector/FuncCall/RemoveDumpDataDeadCodeRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/FuncCall/RemoveDumpDataDeadCodeRector.php -------------------------------------------------------------------------------- /src/Rector/FuncCall/RemoveRedundantValueCallsRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/FuncCall/RemoveRedundantValueCallsRector.php -------------------------------------------------------------------------------- /src/Rector/FuncCall/RemoveRedundantWithCallsRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/FuncCall/RemoveRedundantWithCallsRector.php -------------------------------------------------------------------------------- /src/Rector/FuncCall/SleepFuncToSleepStaticCallRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/FuncCall/SleepFuncToSleepStaticCallRector.php -------------------------------------------------------------------------------- /src/Rector/FuncCall/ThrowIfAndThrowUnlessExceptionsToUseClassStringRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/FuncCall/ThrowIfAndThrowUnlessExceptionsToUseClassStringRector.php -------------------------------------------------------------------------------- /src/Rector/FuncCall/TypeHintTappableCallRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/FuncCall/TypeHintTappableCallRector.php -------------------------------------------------------------------------------- /src/Rector/If_/AbortIfRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/If_/AbortIfRector.php -------------------------------------------------------------------------------- /src/Rector/If_/ReportIfRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/If_/ReportIfRector.php -------------------------------------------------------------------------------- /src/Rector/If_/ThrowIfRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/If_/ThrowIfRector.php -------------------------------------------------------------------------------- /src/Rector/MethodCall/AssertSeeToAssertSeeHtmlRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/MethodCall/AssertSeeToAssertSeeHtmlRector.php -------------------------------------------------------------------------------- /src/Rector/MethodCall/AssertStatusToAssertMethodRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/MethodCall/AssertStatusToAssertMethodRector.php -------------------------------------------------------------------------------- /src/Rector/MethodCall/AvoidNegatedCollectionFilterOrRejectRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/MethodCall/AvoidNegatedCollectionFilterOrRejectRector.php -------------------------------------------------------------------------------- /src/Rector/MethodCall/ChangeQueryWhereDateValueWithCarbonRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/MethodCall/ChangeQueryWhereDateValueWithCarbonRector.php -------------------------------------------------------------------------------- /src/Rector/MethodCall/ContainerBindConcreteWithClosureOnlyRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/MethodCall/ContainerBindConcreteWithClosureOnlyRector.php -------------------------------------------------------------------------------- /src/Rector/MethodCall/ConvertEnumerableToArrayToAllRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/MethodCall/ConvertEnumerableToArrayToAllRector.php -------------------------------------------------------------------------------- /src/Rector/MethodCall/DatabaseExpressionToStringToMethodCallRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/MethodCall/DatabaseExpressionToStringToMethodCallRector.php -------------------------------------------------------------------------------- /src/Rector/MethodCall/EloquentOrderByToLatestOrOldestRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/MethodCall/EloquentOrderByToLatestOrOldestRector.php -------------------------------------------------------------------------------- /src/Rector/MethodCall/EloquentWhereRelationTypeHintingParameterRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/MethodCall/EloquentWhereRelationTypeHintingParameterRector.php -------------------------------------------------------------------------------- /src/Rector/MethodCall/EloquentWhereTypeHintClosureParameterRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/MethodCall/EloquentWhereTypeHintClosureParameterRector.php -------------------------------------------------------------------------------- /src/Rector/MethodCall/FactoryApplyingStatesRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/MethodCall/FactoryApplyingStatesRector.php -------------------------------------------------------------------------------- /src/Rector/MethodCall/JsonCallToExplicitJsonCallRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/MethodCall/JsonCallToExplicitJsonCallRector.php -------------------------------------------------------------------------------- /src/Rector/MethodCall/LumenRoutesStringActionToUsesArrayRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/MethodCall/LumenRoutesStringActionToUsesArrayRector.php -------------------------------------------------------------------------------- /src/Rector/MethodCall/LumenRoutesStringMiddlewareToArrayRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/MethodCall/LumenRoutesStringMiddlewareToArrayRector.php -------------------------------------------------------------------------------- /src/Rector/MethodCall/RedirectBackToBackHelperRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/MethodCall/RedirectBackToBackHelperRector.php -------------------------------------------------------------------------------- /src/Rector/MethodCall/RedirectRouteToToRouteHelperRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/MethodCall/RedirectRouteToToRouteHelperRector.php -------------------------------------------------------------------------------- /src/Rector/MethodCall/RefactorBlueprintGeometryColumnsRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/MethodCall/RefactorBlueprintGeometryColumnsRector.php -------------------------------------------------------------------------------- /src/Rector/MethodCall/ReplaceServiceContainerCallArgRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/MethodCall/ReplaceServiceContainerCallArgRector.php -------------------------------------------------------------------------------- /src/Rector/MethodCall/ReplaceWithoutJobsEventsAndNotificationsWithFacadeFakeRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/MethodCall/ReplaceWithoutJobsEventsAndNotificationsWithFacadeFakeRector.php -------------------------------------------------------------------------------- /src/Rector/MethodCall/ResponseHelperCallToJsonResponseRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/MethodCall/ResponseHelperCallToJsonResponseRector.php -------------------------------------------------------------------------------- /src/Rector/MethodCall/ReverseConditionableMethodCallRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/MethodCall/ReverseConditionableMethodCallRector.php -------------------------------------------------------------------------------- /src/Rector/MethodCall/UnaliasCollectionMethodsRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/MethodCall/UnaliasCollectionMethodsRector.php -------------------------------------------------------------------------------- /src/Rector/MethodCall/UseComponentPropertyWithinCommandsRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/MethodCall/UseComponentPropertyWithinCommandsRector.php -------------------------------------------------------------------------------- /src/Rector/MethodCall/ValidationRuleArrayStringValueToArrayRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/MethodCall/ValidationRuleArrayStringValueToArrayRector.php -------------------------------------------------------------------------------- /src/Rector/MethodCall/WhereToWhereLikeRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/MethodCall/WhereToWhereLikeRector.php -------------------------------------------------------------------------------- /src/Rector/Namespace_/FactoryDefinitionRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/Namespace_/FactoryDefinitionRector.php -------------------------------------------------------------------------------- /src/Rector/New_/AddGuardToLoginEventRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/New_/AddGuardToLoginEventRector.php -------------------------------------------------------------------------------- /src/Rector/PropertyFetch/OptionalToNullsafeOperatorRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/PropertyFetch/OptionalToNullsafeOperatorRector.php -------------------------------------------------------------------------------- /src/Rector/PropertyFetch/ReplaceFakerInstanceWithHelperRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/PropertyFetch/ReplaceFakerInstanceWithHelperRector.php -------------------------------------------------------------------------------- /src/Rector/PropertyFetch/ReplaceFakerPropertyFetchWithMethodCallRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/PropertyFetch/ReplaceFakerPropertyFetchWithMethodCallRector.php -------------------------------------------------------------------------------- /src/Rector/StaticCall/AssertWithClassStringToTypeHintedClosureRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/StaticCall/AssertWithClassStringToTypeHintedClosureRector.php -------------------------------------------------------------------------------- /src/Rector/StaticCall/CarbonSetTestNowToTravelToRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/StaticCall/CarbonSetTestNowToTravelToRector.php -------------------------------------------------------------------------------- /src/Rector/StaticCall/CarbonToDateFacadeRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/StaticCall/CarbonToDateFacadeRector.php -------------------------------------------------------------------------------- /src/Rector/StaticCall/DispatchToHelperFunctionsRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/StaticCall/DispatchToHelperFunctionsRector.php -------------------------------------------------------------------------------- /src/Rector/StaticCall/EloquentMagicMethodToQueryBuilderRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/StaticCall/EloquentMagicMethodToQueryBuilderRector.php -------------------------------------------------------------------------------- /src/Rector/StaticCall/MinutesToSecondsInCacheRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/StaticCall/MinutesToSecondsInCacheRector.php -------------------------------------------------------------------------------- /src/Rector/StaticCall/Redirect301ToPermanentRedirectRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/StaticCall/Redirect301ToPermanentRedirectRector.php -------------------------------------------------------------------------------- /src/Rector/StaticCall/ReplaceAssertTimesSendWithAssertSentTimesRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/StaticCall/ReplaceAssertTimesSendWithAssertSentTimesRector.php -------------------------------------------------------------------------------- /src/Rector/StaticCall/RequestStaticValidateToInjectRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/StaticCall/RequestStaticValidateToInjectRector.php -------------------------------------------------------------------------------- /src/Rector/StaticCall/RouteActionCallableRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Rector/StaticCall/RouteActionCallableRector.php -------------------------------------------------------------------------------- /src/Set/LaravelLevelSetList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Set/LaravelLevelSetList.php -------------------------------------------------------------------------------- /src/Set/LaravelSetList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Set/LaravelSetList.php -------------------------------------------------------------------------------- /src/Set/LaravelSetProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Set/LaravelSetProvider.php -------------------------------------------------------------------------------- /src/Set/Packages/Cashier/CashierLevelSetList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Set/Packages/Cashier/CashierLevelSetList.php -------------------------------------------------------------------------------- /src/Set/Packages/Cashier/CashierSetList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Set/Packages/Cashier/CashierSetList.php -------------------------------------------------------------------------------- /src/Set/Packages/Faker/FakerSetList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Set/Packages/Faker/FakerSetList.php -------------------------------------------------------------------------------- /src/Set/Packages/Livewire/LivewireLevelSetList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Set/Packages/Livewire/LivewireLevelSetList.php -------------------------------------------------------------------------------- /src/Set/Packages/Livewire/LivewireSetList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/Set/Packages/Livewire/LivewireSetList.php -------------------------------------------------------------------------------- /src/ValueObject/AddArgumentDefaultValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/ValueObject/AddArgumentDefaultValue.php -------------------------------------------------------------------------------- /src/ValueObject/ApplyDefaultInsteadOfNullCoalesce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/ValueObject/ApplyDefaultInsteadOfNullCoalesce.php -------------------------------------------------------------------------------- /src/ValueObject/ArgumentFuncCallToMethodCall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/ValueObject/ArgumentFuncCallToMethodCall.php -------------------------------------------------------------------------------- /src/ValueObject/ArrayFuncCallToMethodCall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/ValueObject/ArrayFuncCallToMethodCall.php -------------------------------------------------------------------------------- /src/ValueObject/ExpectedClassMethodMethodCalls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/ValueObject/ExpectedClassMethodMethodCalls.php -------------------------------------------------------------------------------- /src/ValueObject/ForwardingCall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/ValueObject/ForwardingCall.php -------------------------------------------------------------------------------- /src/ValueObject/ReplaceRequestKeyAndMethodValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/ValueObject/ReplaceRequestKeyAndMethodValue.php -------------------------------------------------------------------------------- /src/ValueObject/ReplaceServiceContainerCallArg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/ValueObject/ReplaceServiceContainerCallArg.php -------------------------------------------------------------------------------- /src/ValueObject/ServiceNameTypeAndVariableName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/ValueObject/ServiceNameTypeAndVariableName.php -------------------------------------------------------------------------------- /src/ValueObject/TypeToTimeMethodAndPosition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/src/ValueObject/TypeToTimeMethodAndPosition.php -------------------------------------------------------------------------------- /templates/configurable-config.php.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/templates/configurable-config.php.template -------------------------------------------------------------------------------- /templates/configurable-rule.php.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/templates/configurable-rule.php.template -------------------------------------------------------------------------------- /templates/fixture.php.inc.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/templates/fixture.php.inc.template -------------------------------------------------------------------------------- /templates/non-configurable-config.php.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/templates/non-configurable-config.php.template -------------------------------------------------------------------------------- /templates/non-configurable-rule.php.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/templates/non-configurable-rule.php.template -------------------------------------------------------------------------------- /templates/test.php.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/driftingly/rector-laravel/HEAD/templates/test.php.template --------------------------------------------------------------------------------