├── LICENSE.md ├── README.md ├── composer.json ├── config └── config.php ├── microscope ├── src ├── Analyzers │ ├── ComposerJson.php │ └── Fixer.php ├── Check.php ├── Checks │ ├── CheckEarlyReturn.php │ ├── CheckRouteCalls.php │ └── CheckRubySyntax.php ├── ClassListProvider.php ├── Commands │ ├── AnonymizeMigrations.php │ ├── CheckAll.php │ ├── CheckCompact.php │ ├── CheckDynamicWhereMethod.php │ ├── CheckEarlyReturns.php │ ├── CheckEmptyComments.php │ ├── CheckEndIf.php │ ├── CheckExtraSemiColons.php │ ├── CheckGates.php │ ├── CheckRoutes.php │ ├── EnforceArrowFunctions.php │ ├── EnforceHelpers.php │ ├── EnforceQuery.php │ ├── PatternApply.php │ └── PrettyPrintRoutes.php ├── ErrorReporters │ ├── ConsolePrinterInstaller.php │ ├── ErrorPrinter.php │ ├── MessageBuilders │ │ ├── AutoloadMessages │ │ │ ├── AutoloadFiles.php │ │ │ ├── ClassMapStats.php │ │ │ └── Psr4Stats.php │ │ └── LaravelFoldersReport.php │ ├── PendingError.php │ ├── Psr4ReportPrinter.php │ └── Reporting.php ├── Features │ ├── ActionComments │ │ ├── ActionsComments.php │ │ ├── CheckActionComments.php │ │ └── CommentMaker.php │ ├── CheckBladeQueries │ │ ├── CheckBladeQueriesCommand.php │ │ └── IsQueryCheck.php │ ├── CheckClassyStrings │ │ ├── CheckStringy.php │ │ ├── CheckStringyMsg.php │ │ └── ClassifyStrings.php │ ├── CheckDD │ │ ├── CheckDD.php │ │ └── CheckDDCommand.php │ ├── CheckDeadControllers │ │ ├── CheckDeadControllers.php │ │ ├── Dependencies │ │ │ ├── DeadControllerErrors.php │ │ │ └── RouteChecker.php │ │ └── RoutelessControllerActions.php │ ├── CheckEnvCalls │ │ ├── CheckEnvCallsCommand.php │ │ └── EnvCallsCheck.php │ ├── CheckEvents │ │ ├── CheckEvents.php │ │ ├── Installer.php │ │ └── SpyDispatcher.php │ ├── CheckExtraFQCN │ │ ├── CheckExtraFQCNCommand.php │ │ └── ExtraFQCN.php │ ├── CheckFacadeDocblocks │ │ ├── CheckFacadeDocblocks.php │ │ └── FacadeDocblocks.php │ ├── CheckGenericDocBlocks │ │ ├── CheckGenericDocBlocksCommand.php │ │ └── GenericDocblocks.php │ ├── CheckImports │ │ ├── CheckImportsCommand.php │ │ ├── Checks │ │ │ ├── CheckClassAtMethod.php │ │ │ └── CheckClassReferencesAreValid.php │ │ ├── ErrorCounter.php │ │ ├── Handlers │ │ │ ├── ClassAtMethodHandler.php │ │ │ ├── ExtraCorrectImports.php │ │ │ ├── ExtraWrongImports.php │ │ │ ├── FixWrongClassRefs.php │ │ │ └── PrintWrongClassRefs.php │ │ └── Reporters │ │ │ ├── BladeReport.php │ │ │ ├── CheckImportReporter.php │ │ │ ├── Psr4Report.php │ │ │ └── SummeryReport.php │ ├── CheckPsr12 │ │ ├── CheckPsr12Command.php │ │ └── CurlyBracesCheck.php │ ├── CheckRoutes │ │ ├── Installer.php │ │ ├── SpyRouteCollection.php │ │ └── SpyRouter.php │ ├── CheckUnusedBladeVars │ │ ├── UnusedVarsInstaller.php │ │ └── ViewsData.php │ ├── CheckView │ │ ├── Check │ │ │ ├── CheckView.php │ │ │ ├── CheckViewFilesExistence.php │ │ │ └── CheckViewStats.php │ │ └── CheckViewsCommand.php │ ├── EnforceImports │ │ ├── EnforceImports.php │ │ └── EnforceImportsCommand.php │ ├── ExtractsBladePartials │ │ ├── CheckExtractBladeIncludesCommand.php │ │ └── ExtractBladePartial.php │ ├── FacadeAlias │ │ ├── CheckAliasesCommand.php │ │ ├── FacadeAliasReplacer.php │ │ ├── FacadeAliasReporter.php │ │ └── FacadeAliasesCheck.php │ ├── ListModels │ │ ├── ListModelsArtisanCommand.php │ │ ├── ModelListPrinter.php │ │ └── SubclassFinder.php │ ├── Psr4 │ │ ├── ClassRefCorrector │ │ │ ├── AfterRefFix.php │ │ │ ├── BeforeRefFix.php │ │ │ ├── ClassRefCorrector.php │ │ │ └── FilePathsForReferenceFix.php │ │ ├── Console │ │ │ ├── CheckPsr4ArtisanCommand.php │ │ │ ├── Confirm.php │ │ │ ├── NamespaceFixer │ │ │ │ └── NamespaceFixerMessages.php │ │ │ ├── Psr4Errors.php │ │ │ ├── ReportMessages.php │ │ │ └── TypeStatistics.php │ │ └── NamespaceFixer.php │ ├── RouteOverride │ │ ├── Installer.php │ │ ├── RouteDefinitionConflict.php │ │ └── RouteDefinitionPrinter.php │ ├── ServiceProviderGenerator │ │ ├── CheckCodeGeneration.php │ │ ├── GenerateCode.php │ │ ├── ServiceProviderStub.php │ │ └── microscopeServiceProvider.stub │ └── Thanks.php ├── FileReaders │ ├── FilePath.php │ ├── Paths.php │ └── PhpFinder.php ├── Foundations │ ├── Loop.php │ ├── Path.php │ └── PhpFileDescriptor.php ├── Handlers │ └── ErrorExceptionHandler.php ├── Iterators │ ├── BaseIterator.php │ ├── BladeFiles │ │ └── CheckBladePaths.php │ ├── CheckSingleMapping.php │ ├── ChecksOnPsr4Classes.php │ ├── FiltersFiles.php │ ├── ForAutoloadedClassMaps.php │ ├── ForAutoloadedFiles.php │ ├── ForAutoloadedPsr4Classes.php │ ├── ForBladeFiles.php │ ├── ForFolderPaths.php │ └── ForRouteFiles.php ├── LaravelMicroscopeServiceProvider.php ├── LaravelPaths │ └── LaravelPaths.php ├── PathFilterDTO.php ├── SearchReplace │ ├── CachedFiles.php │ ├── CheckRefactorsCommand.php │ ├── FullNamespaceIs.php │ ├── IsSubClassOf.php │ ├── NamespaceIs.php │ ├── PatternRefactorings.php │ ├── PostReplaceAndSave.php │ └── search_replace.stub ├── ServiceProvider │ └── CommandsRegistry.php ├── SpyClasses │ ├── RoutePaths.php │ ├── SpyBladeCompiler.php │ └── SpyGate.php ├── Traits │ ├── LogsErrors.php │ └── ScansFiles.php └── helpers.php └── templates └── actions_comment.blade.php /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/composer.json -------------------------------------------------------------------------------- /config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/config/config.php -------------------------------------------------------------------------------- /microscope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/microscope -------------------------------------------------------------------------------- /src/Analyzers/ComposerJson.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Analyzers/ComposerJson.php -------------------------------------------------------------------------------- /src/Analyzers/Fixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Analyzers/Fixer.php -------------------------------------------------------------------------------- /src/Check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Check.php -------------------------------------------------------------------------------- /src/Checks/CheckEarlyReturn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Checks/CheckEarlyReturn.php -------------------------------------------------------------------------------- /src/Checks/CheckRouteCalls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Checks/CheckRouteCalls.php -------------------------------------------------------------------------------- /src/Checks/CheckRubySyntax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Checks/CheckRubySyntax.php -------------------------------------------------------------------------------- /src/ClassListProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/ClassListProvider.php -------------------------------------------------------------------------------- /src/Commands/AnonymizeMigrations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Commands/AnonymizeMigrations.php -------------------------------------------------------------------------------- /src/Commands/CheckAll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Commands/CheckAll.php -------------------------------------------------------------------------------- /src/Commands/CheckCompact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Commands/CheckCompact.php -------------------------------------------------------------------------------- /src/Commands/CheckDynamicWhereMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Commands/CheckDynamicWhereMethod.php -------------------------------------------------------------------------------- /src/Commands/CheckEarlyReturns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Commands/CheckEarlyReturns.php -------------------------------------------------------------------------------- /src/Commands/CheckEmptyComments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Commands/CheckEmptyComments.php -------------------------------------------------------------------------------- /src/Commands/CheckEndIf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Commands/CheckEndIf.php -------------------------------------------------------------------------------- /src/Commands/CheckExtraSemiColons.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Commands/CheckExtraSemiColons.php -------------------------------------------------------------------------------- /src/Commands/CheckGates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Commands/CheckGates.php -------------------------------------------------------------------------------- /src/Commands/CheckRoutes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Commands/CheckRoutes.php -------------------------------------------------------------------------------- /src/Commands/EnforceArrowFunctions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Commands/EnforceArrowFunctions.php -------------------------------------------------------------------------------- /src/Commands/EnforceHelpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Commands/EnforceHelpers.php -------------------------------------------------------------------------------- /src/Commands/EnforceQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Commands/EnforceQuery.php -------------------------------------------------------------------------------- /src/Commands/PatternApply.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Commands/PatternApply.php -------------------------------------------------------------------------------- /src/Commands/PrettyPrintRoutes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Commands/PrettyPrintRoutes.php -------------------------------------------------------------------------------- /src/ErrorReporters/ConsolePrinterInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/ErrorReporters/ConsolePrinterInstaller.php -------------------------------------------------------------------------------- /src/ErrorReporters/ErrorPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/ErrorReporters/ErrorPrinter.php -------------------------------------------------------------------------------- /src/ErrorReporters/MessageBuilders/AutoloadMessages/AutoloadFiles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/ErrorReporters/MessageBuilders/AutoloadMessages/AutoloadFiles.php -------------------------------------------------------------------------------- /src/ErrorReporters/MessageBuilders/AutoloadMessages/ClassMapStats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/ErrorReporters/MessageBuilders/AutoloadMessages/ClassMapStats.php -------------------------------------------------------------------------------- /src/ErrorReporters/MessageBuilders/AutoloadMessages/Psr4Stats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/ErrorReporters/MessageBuilders/AutoloadMessages/Psr4Stats.php -------------------------------------------------------------------------------- /src/ErrorReporters/MessageBuilders/LaravelFoldersReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/ErrorReporters/MessageBuilders/LaravelFoldersReport.php -------------------------------------------------------------------------------- /src/ErrorReporters/PendingError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/ErrorReporters/PendingError.php -------------------------------------------------------------------------------- /src/ErrorReporters/Psr4ReportPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/ErrorReporters/Psr4ReportPrinter.php -------------------------------------------------------------------------------- /src/ErrorReporters/Reporting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/ErrorReporters/Reporting.php -------------------------------------------------------------------------------- /src/Features/ActionComments/ActionsComments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/ActionComments/ActionsComments.php -------------------------------------------------------------------------------- /src/Features/ActionComments/CheckActionComments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/ActionComments/CheckActionComments.php -------------------------------------------------------------------------------- /src/Features/ActionComments/CommentMaker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/ActionComments/CommentMaker.php -------------------------------------------------------------------------------- /src/Features/CheckBladeQueries/CheckBladeQueriesCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/CheckBladeQueries/CheckBladeQueriesCommand.php -------------------------------------------------------------------------------- /src/Features/CheckBladeQueries/IsQueryCheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/CheckBladeQueries/IsQueryCheck.php -------------------------------------------------------------------------------- /src/Features/CheckClassyStrings/CheckStringy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/CheckClassyStrings/CheckStringy.php -------------------------------------------------------------------------------- /src/Features/CheckClassyStrings/CheckStringyMsg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/CheckClassyStrings/CheckStringyMsg.php -------------------------------------------------------------------------------- /src/Features/CheckClassyStrings/ClassifyStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/CheckClassyStrings/ClassifyStrings.php -------------------------------------------------------------------------------- /src/Features/CheckDD/CheckDD.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/CheckDD/CheckDD.php -------------------------------------------------------------------------------- /src/Features/CheckDD/CheckDDCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/CheckDD/CheckDDCommand.php -------------------------------------------------------------------------------- /src/Features/CheckDeadControllers/CheckDeadControllers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/CheckDeadControllers/CheckDeadControllers.php -------------------------------------------------------------------------------- /src/Features/CheckDeadControllers/Dependencies/DeadControllerErrors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/CheckDeadControllers/Dependencies/DeadControllerErrors.php -------------------------------------------------------------------------------- /src/Features/CheckDeadControllers/Dependencies/RouteChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/CheckDeadControllers/Dependencies/RouteChecker.php -------------------------------------------------------------------------------- /src/Features/CheckDeadControllers/RoutelessControllerActions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/CheckDeadControllers/RoutelessControllerActions.php -------------------------------------------------------------------------------- /src/Features/CheckEnvCalls/CheckEnvCallsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/CheckEnvCalls/CheckEnvCallsCommand.php -------------------------------------------------------------------------------- /src/Features/CheckEnvCalls/EnvCallsCheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/CheckEnvCalls/EnvCallsCheck.php -------------------------------------------------------------------------------- /src/Features/CheckEvents/CheckEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/CheckEvents/CheckEvents.php -------------------------------------------------------------------------------- /src/Features/CheckEvents/Installer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/CheckEvents/Installer.php -------------------------------------------------------------------------------- /src/Features/CheckEvents/SpyDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/CheckEvents/SpyDispatcher.php -------------------------------------------------------------------------------- /src/Features/CheckExtraFQCN/CheckExtraFQCNCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/CheckExtraFQCN/CheckExtraFQCNCommand.php -------------------------------------------------------------------------------- /src/Features/CheckExtraFQCN/ExtraFQCN.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/CheckExtraFQCN/ExtraFQCN.php -------------------------------------------------------------------------------- /src/Features/CheckFacadeDocblocks/CheckFacadeDocblocks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/CheckFacadeDocblocks/CheckFacadeDocblocks.php -------------------------------------------------------------------------------- /src/Features/CheckFacadeDocblocks/FacadeDocblocks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/CheckFacadeDocblocks/FacadeDocblocks.php -------------------------------------------------------------------------------- /src/Features/CheckGenericDocBlocks/CheckGenericDocBlocksCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/CheckGenericDocBlocks/CheckGenericDocBlocksCommand.php -------------------------------------------------------------------------------- /src/Features/CheckGenericDocBlocks/GenericDocblocks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/CheckGenericDocBlocks/GenericDocblocks.php -------------------------------------------------------------------------------- /src/Features/CheckImports/CheckImportsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/CheckImports/CheckImportsCommand.php -------------------------------------------------------------------------------- /src/Features/CheckImports/Checks/CheckClassAtMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/CheckImports/Checks/CheckClassAtMethod.php -------------------------------------------------------------------------------- /src/Features/CheckImports/Checks/CheckClassReferencesAreValid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/CheckImports/Checks/CheckClassReferencesAreValid.php -------------------------------------------------------------------------------- /src/Features/CheckImports/ErrorCounter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/CheckImports/ErrorCounter.php -------------------------------------------------------------------------------- /src/Features/CheckImports/Handlers/ClassAtMethodHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/CheckImports/Handlers/ClassAtMethodHandler.php -------------------------------------------------------------------------------- /src/Features/CheckImports/Handlers/ExtraCorrectImports.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/CheckImports/Handlers/ExtraCorrectImports.php -------------------------------------------------------------------------------- /src/Features/CheckImports/Handlers/ExtraWrongImports.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/CheckImports/Handlers/ExtraWrongImports.php -------------------------------------------------------------------------------- /src/Features/CheckImports/Handlers/FixWrongClassRefs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/CheckImports/Handlers/FixWrongClassRefs.php -------------------------------------------------------------------------------- /src/Features/CheckImports/Handlers/PrintWrongClassRefs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/CheckImports/Handlers/PrintWrongClassRefs.php -------------------------------------------------------------------------------- /src/Features/CheckImports/Reporters/BladeReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/CheckImports/Reporters/BladeReport.php -------------------------------------------------------------------------------- /src/Features/CheckImports/Reporters/CheckImportReporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/CheckImports/Reporters/CheckImportReporter.php -------------------------------------------------------------------------------- /src/Features/CheckImports/Reporters/Psr4Report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/CheckImports/Reporters/Psr4Report.php -------------------------------------------------------------------------------- /src/Features/CheckImports/Reporters/SummeryReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/CheckImports/Reporters/SummeryReport.php -------------------------------------------------------------------------------- /src/Features/CheckPsr12/CheckPsr12Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/CheckPsr12/CheckPsr12Command.php -------------------------------------------------------------------------------- /src/Features/CheckPsr12/CurlyBracesCheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/CheckPsr12/CurlyBracesCheck.php -------------------------------------------------------------------------------- /src/Features/CheckRoutes/Installer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/CheckRoutes/Installer.php -------------------------------------------------------------------------------- /src/Features/CheckRoutes/SpyRouteCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/CheckRoutes/SpyRouteCollection.php -------------------------------------------------------------------------------- /src/Features/CheckRoutes/SpyRouter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/CheckRoutes/SpyRouter.php -------------------------------------------------------------------------------- /src/Features/CheckUnusedBladeVars/UnusedVarsInstaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/CheckUnusedBladeVars/UnusedVarsInstaller.php -------------------------------------------------------------------------------- /src/Features/CheckUnusedBladeVars/ViewsData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/CheckUnusedBladeVars/ViewsData.php -------------------------------------------------------------------------------- /src/Features/CheckView/Check/CheckView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/CheckView/Check/CheckView.php -------------------------------------------------------------------------------- /src/Features/CheckView/Check/CheckViewFilesExistence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/CheckView/Check/CheckViewFilesExistence.php -------------------------------------------------------------------------------- /src/Features/CheckView/Check/CheckViewStats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/CheckView/Check/CheckViewStats.php -------------------------------------------------------------------------------- /src/Features/CheckView/CheckViewsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/CheckView/CheckViewsCommand.php -------------------------------------------------------------------------------- /src/Features/EnforceImports/EnforceImports.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/EnforceImports/EnforceImports.php -------------------------------------------------------------------------------- /src/Features/EnforceImports/EnforceImportsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/EnforceImports/EnforceImportsCommand.php -------------------------------------------------------------------------------- /src/Features/ExtractsBladePartials/CheckExtractBladeIncludesCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/ExtractsBladePartials/CheckExtractBladeIncludesCommand.php -------------------------------------------------------------------------------- /src/Features/ExtractsBladePartials/ExtractBladePartial.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/ExtractsBladePartials/ExtractBladePartial.php -------------------------------------------------------------------------------- /src/Features/FacadeAlias/CheckAliasesCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/FacadeAlias/CheckAliasesCommand.php -------------------------------------------------------------------------------- /src/Features/FacadeAlias/FacadeAliasReplacer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/FacadeAlias/FacadeAliasReplacer.php -------------------------------------------------------------------------------- /src/Features/FacadeAlias/FacadeAliasReporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/FacadeAlias/FacadeAliasReporter.php -------------------------------------------------------------------------------- /src/Features/FacadeAlias/FacadeAliasesCheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/FacadeAlias/FacadeAliasesCheck.php -------------------------------------------------------------------------------- /src/Features/ListModels/ListModelsArtisanCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/ListModels/ListModelsArtisanCommand.php -------------------------------------------------------------------------------- /src/Features/ListModels/ModelListPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/ListModels/ModelListPrinter.php -------------------------------------------------------------------------------- /src/Features/ListModels/SubclassFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/ListModels/SubclassFinder.php -------------------------------------------------------------------------------- /src/Features/Psr4/ClassRefCorrector/AfterRefFix.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/Psr4/ClassRefCorrector/AfterRefFix.php -------------------------------------------------------------------------------- /src/Features/Psr4/ClassRefCorrector/BeforeRefFix.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/Psr4/ClassRefCorrector/BeforeRefFix.php -------------------------------------------------------------------------------- /src/Features/Psr4/ClassRefCorrector/ClassRefCorrector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/Psr4/ClassRefCorrector/ClassRefCorrector.php -------------------------------------------------------------------------------- /src/Features/Psr4/ClassRefCorrector/FilePathsForReferenceFix.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/Psr4/ClassRefCorrector/FilePathsForReferenceFix.php -------------------------------------------------------------------------------- /src/Features/Psr4/Console/CheckPsr4ArtisanCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/Psr4/Console/CheckPsr4ArtisanCommand.php -------------------------------------------------------------------------------- /src/Features/Psr4/Console/Confirm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/Psr4/Console/Confirm.php -------------------------------------------------------------------------------- /src/Features/Psr4/Console/NamespaceFixer/NamespaceFixerMessages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/Psr4/Console/NamespaceFixer/NamespaceFixerMessages.php -------------------------------------------------------------------------------- /src/Features/Psr4/Console/Psr4Errors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/Psr4/Console/Psr4Errors.php -------------------------------------------------------------------------------- /src/Features/Psr4/Console/ReportMessages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/Psr4/Console/ReportMessages.php -------------------------------------------------------------------------------- /src/Features/Psr4/Console/TypeStatistics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/Psr4/Console/TypeStatistics.php -------------------------------------------------------------------------------- /src/Features/Psr4/NamespaceFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/Psr4/NamespaceFixer.php -------------------------------------------------------------------------------- /src/Features/RouteOverride/Installer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/RouteOverride/Installer.php -------------------------------------------------------------------------------- /src/Features/RouteOverride/RouteDefinitionConflict.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/RouteOverride/RouteDefinitionConflict.php -------------------------------------------------------------------------------- /src/Features/RouteOverride/RouteDefinitionPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/RouteOverride/RouteDefinitionPrinter.php -------------------------------------------------------------------------------- /src/Features/ServiceProviderGenerator/CheckCodeGeneration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/ServiceProviderGenerator/CheckCodeGeneration.php -------------------------------------------------------------------------------- /src/Features/ServiceProviderGenerator/GenerateCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/ServiceProviderGenerator/GenerateCode.php -------------------------------------------------------------------------------- /src/Features/ServiceProviderGenerator/ServiceProviderStub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/ServiceProviderGenerator/ServiceProviderStub.php -------------------------------------------------------------------------------- /src/Features/ServiceProviderGenerator/microscopeServiceProvider.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/ServiceProviderGenerator/microscopeServiceProvider.stub -------------------------------------------------------------------------------- /src/Features/Thanks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Features/Thanks.php -------------------------------------------------------------------------------- /src/FileReaders/FilePath.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/FileReaders/FilePath.php -------------------------------------------------------------------------------- /src/FileReaders/Paths.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/FileReaders/Paths.php -------------------------------------------------------------------------------- /src/FileReaders/PhpFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/FileReaders/PhpFinder.php -------------------------------------------------------------------------------- /src/Foundations/Loop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Foundations/Loop.php -------------------------------------------------------------------------------- /src/Foundations/Path.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Foundations/Path.php -------------------------------------------------------------------------------- /src/Foundations/PhpFileDescriptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Foundations/PhpFileDescriptor.php -------------------------------------------------------------------------------- /src/Handlers/ErrorExceptionHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Handlers/ErrorExceptionHandler.php -------------------------------------------------------------------------------- /src/Iterators/BaseIterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Iterators/BaseIterator.php -------------------------------------------------------------------------------- /src/Iterators/BladeFiles/CheckBladePaths.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Iterators/BladeFiles/CheckBladePaths.php -------------------------------------------------------------------------------- /src/Iterators/CheckSingleMapping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Iterators/CheckSingleMapping.php -------------------------------------------------------------------------------- /src/Iterators/ChecksOnPsr4Classes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Iterators/ChecksOnPsr4Classes.php -------------------------------------------------------------------------------- /src/Iterators/FiltersFiles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Iterators/FiltersFiles.php -------------------------------------------------------------------------------- /src/Iterators/ForAutoloadedClassMaps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Iterators/ForAutoloadedClassMaps.php -------------------------------------------------------------------------------- /src/Iterators/ForAutoloadedFiles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Iterators/ForAutoloadedFiles.php -------------------------------------------------------------------------------- /src/Iterators/ForAutoloadedPsr4Classes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Iterators/ForAutoloadedPsr4Classes.php -------------------------------------------------------------------------------- /src/Iterators/ForBladeFiles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Iterators/ForBladeFiles.php -------------------------------------------------------------------------------- /src/Iterators/ForFolderPaths.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Iterators/ForFolderPaths.php -------------------------------------------------------------------------------- /src/Iterators/ForRouteFiles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Iterators/ForRouteFiles.php -------------------------------------------------------------------------------- /src/LaravelMicroscopeServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/LaravelMicroscopeServiceProvider.php -------------------------------------------------------------------------------- /src/LaravelPaths/LaravelPaths.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/LaravelPaths/LaravelPaths.php -------------------------------------------------------------------------------- /src/PathFilterDTO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/PathFilterDTO.php -------------------------------------------------------------------------------- /src/SearchReplace/CachedFiles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/SearchReplace/CachedFiles.php -------------------------------------------------------------------------------- /src/SearchReplace/CheckRefactorsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/SearchReplace/CheckRefactorsCommand.php -------------------------------------------------------------------------------- /src/SearchReplace/FullNamespaceIs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/SearchReplace/FullNamespaceIs.php -------------------------------------------------------------------------------- /src/SearchReplace/IsSubClassOf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/SearchReplace/IsSubClassOf.php -------------------------------------------------------------------------------- /src/SearchReplace/NamespaceIs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/SearchReplace/NamespaceIs.php -------------------------------------------------------------------------------- /src/SearchReplace/PatternRefactorings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/SearchReplace/PatternRefactorings.php -------------------------------------------------------------------------------- /src/SearchReplace/PostReplaceAndSave.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/SearchReplace/PostReplaceAndSave.php -------------------------------------------------------------------------------- /src/SearchReplace/search_replace.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/SearchReplace/search_replace.stub -------------------------------------------------------------------------------- /src/ServiceProvider/CommandsRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/ServiceProvider/CommandsRegistry.php -------------------------------------------------------------------------------- /src/SpyClasses/RoutePaths.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/SpyClasses/RoutePaths.php -------------------------------------------------------------------------------- /src/SpyClasses/SpyBladeCompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/SpyClasses/SpyBladeCompiler.php -------------------------------------------------------------------------------- /src/SpyClasses/SpyGate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/SpyClasses/SpyGate.php -------------------------------------------------------------------------------- /src/Traits/LogsErrors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Traits/LogsErrors.php -------------------------------------------------------------------------------- /src/Traits/ScansFiles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/Traits/ScansFiles.php -------------------------------------------------------------------------------- /src/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/src/helpers.php -------------------------------------------------------------------------------- /templates/actions_comment.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imanghafoori1/laravel-microscope/HEAD/templates/actions_comment.blade.php --------------------------------------------------------------------------------