├── .art └── banner.png ├── .github ├── FUNDING.yml └── workflows │ └── tests.yml ├── .gitignore ├── .phpunit.cache └── test-results ├── composer.json ├── config └── validation.php ├── license.md ├── phpunit.dist.xml ├── readme.md ├── src ├── Compiler │ ├── AppendState.php │ ├── Attributes │ │ ├── ArgumentRequirement.php │ │ ├── CompilesDirective.php │ │ └── StructureType.php │ ├── CompilationTarget.php │ ├── Compiler.php │ ├── CompilerFactory.php │ ├── CompilerServices │ │ ├── ArgStringSplitter.php │ │ ├── AttributeCompiler.php │ │ ├── CoreDirectiveRetriever.php │ │ ├── DirectiveNameValidator.php │ │ ├── LiteralContentHelpers.php │ │ ├── LoopVariablesExtractor.php │ │ ├── StringSplitter.php │ │ └── StringUtilities.php │ ├── ComponentNodeCompiler.php │ ├── ComponentTagCompiler.php │ ├── Concerns │ │ ├── CompilesAuthorizations.php │ │ ├── CompilesClasses.php │ │ ├── CompilesComponents.php │ │ ├── CompilesConditionals.php │ │ ├── CompilesCustomDirectives.php │ │ ├── CompilesEchos.php │ │ ├── CompilesErrors.php │ │ ├── CompilesFragments.php │ │ ├── CompilesHelpers.php │ │ ├── CompilesIncludes.php │ │ ├── CompilesInjections.php │ │ ├── CompilesJs.php │ │ ├── CompilesJson.php │ │ ├── CompilesLayouts.php │ │ ├── CompilesLoops.php │ │ ├── CompilesRawPhp.php │ │ ├── CompilesStacks.php │ │ ├── CompilesStyles.php │ │ ├── CompilesTranslations.php │ │ ├── CompilesUseStatements.php │ │ ├── CompilesVerbatim.php │ │ ├── ManagesCustomConditions.php │ │ └── ManagesCustomDirectives.php │ ├── StringBuffer.php │ ├── Transformers │ │ ├── NodeTransformer.php │ │ └── RawTransformer.php │ └── UnresolvableComponent.php ├── Console │ └── Commands │ │ └── ValidateBladeCommand.php ├── Contracts │ ├── CustomComponentTagCompiler.php │ └── PathFormatter.php ├── Document │ ├── Concerns │ │ ├── ManagesDocumentStructures.php │ │ ├── ManagesDocumentValidation.php │ │ └── ManagesTextExtraction.php │ ├── Document.php │ ├── DocumentCompilerOptions.php │ ├── DocumentFactory.php │ ├── DocumentOptions.php │ ├── NodeUtilities │ │ ├── QueriesComments.php │ │ ├── QueriesComponents.php │ │ ├── QueriesGeneralNodes.php │ │ ├── QueriesGenerics.php │ │ ├── QueriesRelativeNodes.php │ │ └── QueriesStructures.php │ ├── PartitionResult.php │ └── Structures │ │ ├── Concerns │ │ ├── ConstructsConditions.php │ │ ├── ConstructsForElse.php │ │ ├── ConstructsSwitchStatements.php │ │ ├── ManagesConditionMetaData.php │ │ ├── ManagesDirectiveIndexes.php │ │ ├── PairsComponentTags.php │ │ ├── PairsConditionalStructures.php │ │ ├── ResolvesStructureDocuments.php │ │ └── ScansForClosingPairs.php │ │ ├── ConditionPairStackItem.php │ │ ├── DirectiveClosingAnalyzer.php │ │ ├── DirectiveStackItem.php │ │ ├── RelationshipAnalyzer.php │ │ └── StructurePairAnalyzer.php ├── Errors │ ├── BladeError.php │ ├── ConstructContext.php │ ├── ErrorFamily.php │ ├── ErrorMessagePrinter.php │ ├── ErrorType.php │ └── Exceptions │ │ ├── CompilationException.php │ │ ├── DuplicateParameterException.php │ │ ├── InvalidCastException.php │ │ ├── InvalidParameterException.php │ │ └── UnsupportedNodeException.php ├── Nodes │ ├── AbstractNode.php │ ├── ArgumentContentType.php │ ├── ArgumentGroupNode.php │ ├── BaseNode.php │ ├── CommentNode.php │ ├── Components │ │ ├── ComponentNode.php │ │ ├── Concerns │ │ │ ├── ManagesComponentMetaData.php │ │ │ └── ManagesComponentParameters.php │ │ ├── ParameterAttribute.php │ │ ├── ParameterFactory.php │ │ ├── ParameterNode.php │ │ └── ParameterType.php │ ├── Concerns │ │ ├── ContainsDocumentText.php │ │ ├── InteractsWithBladeErrors.php │ │ └── ProvidesAccessToResolvedStructures.php │ ├── DirectiveNode.php │ ├── EchoNode.php │ ├── EchoType.php │ ├── Fragments │ │ ├── Fragment.php │ │ ├── FragmentParameter.php │ │ ├── FragmentParameterType.php │ │ ├── FragmentPosition.php │ │ └── HtmlFragment.php │ ├── LiteralNode.php │ ├── Loops │ │ └── LoopVariables.php │ ├── NodeCollection.php │ ├── NodeIndexer.php │ ├── PhpBlockNode.php │ ├── PhpTagNode.php │ ├── PhpTagType.php │ ├── Position.php │ ├── Structures │ │ ├── BaseStructureNode.php │ │ ├── CaseStatement.php │ │ ├── Condition.php │ │ ├── ConditionalBranch.php │ │ ├── ForElse.php │ │ └── SwitchStatement.php │ └── VerbatimNode.php ├── Parser │ ├── AbstractParser.php │ ├── BladeKeywords.php │ ├── ComponentParser.php │ ├── CoreDirectives.php │ ├── DocumentParser.php │ ├── DocumentParserFactory.php │ ├── HtmlFragments │ │ ├── BaseFragmentParser.php │ │ ├── FragmentAttributeParser.php │ │ ├── FragmentPositionsAnalyzer.php │ │ └── FragmentsDocumentParser.php │ ├── IndexElement.php │ ├── IndexElementType.php │ └── ScanResult.php ├── Providers │ └── ValidatorServiceProvider.php ├── ServiceProvider.php ├── Support │ ├── BladeCompilerDetailsFetcher.php │ ├── Utf8StringIterator.php │ └── Utilities │ │ └── Paths.php ├── Validation │ ├── AbstractDocumentValidator.php │ ├── AbstractNodeValidator.php │ ├── AbstractValidator.php │ ├── BladeValidator.php │ ├── PhpSyntaxValidationResult.php │ ├── PhpSyntaxValidator.php │ ├── ValidationResult.php │ ├── ValidatorFactory.php │ ├── Validators │ │ ├── ComponentParameterNameSpacingValidator.php │ │ ├── ComponentShorthandVariableParameterValidator.php │ │ ├── Concerns │ │ │ ├── AcceptsCustomDirectives.php │ │ │ └── CanIgnoreDirectives.php │ │ ├── DebugDirectiveValidator.php │ │ ├── DirectiveArgumentSpacingValidator.php │ │ ├── DirectiveArgumentsSpanningLinesValidator.php │ │ ├── DirectiveSpacingValidator.php │ │ ├── Documents │ │ │ └── InvalidPhpDocumentValidator.php │ │ ├── DuplicateConditionExpressionsValidator.php │ │ ├── EmptyConditionValidator.php │ │ ├── ForElseStructureValidator.php │ │ ├── InconsistentDirectiveCasingValidator.php │ │ ├── InconsistentIndentationLevelValidator.php │ │ ├── NoArgumentsValidator.php │ │ ├── NodeCompilationValidator.php │ │ ├── RecursiveIncludeValidator.php │ │ ├── RequiredArgumentsValidator.php │ │ ├── RequiresOpenValidator.php │ │ ├── SwitchValidator.php │ │ └── UnpairedConditionValidator.php │ └── Workspaces │ │ └── PhpStanWrapper.php └── Workspaces │ ├── Concerns │ ├── CompilesWorkspace.php │ ├── ManagesWorkspaceErrors.php │ ├── ProxiesDocumentCalls.php │ └── ValidatesWorkspaces.php │ ├── TempPathFormatter.php │ └── Workspace.php └── tests ├── Compiler ├── BladeAppendTest.php ├── BladeBreakStatementsTest.php ├── BladeCanStatementsTest.php ├── BladeCananyStatementsTest.php ├── BladeCannotStatementsTest.php ├── BladeCheckedStatementsTest.php ├── BladeClassTest.php ├── BladeCommentsTest.php ├── BladeComponentFirstTest.php ├── BladeComponentTagCompilerTest.php ├── BladeComponentsTest.php ├── BladeContinueStatementsTest.php ├── BladeCustomTest.php ├── BladeEchoHandlerTest.php ├── BladeEchoTest.php ├── BladeElseAuthStatementsTest.php ├── BladeElseGuestStatementsTest.php ├── BladeElseIfStatementsTest.php ├── BladeElseStatementsTest.php ├── BladeEndSectionsTest.php ├── BladeEnvironmentStatementsTest.php ├── BladeErrorTest.php ├── BladeEscapedTest.php ├── BladeExpressionTest.php ├── BladeExtensionsTest.php ├── BladeForStatementsTest.php ├── BladeForeachStatementsTest.php ├── BladeForelseStatementsTest.php ├── BladeFragmentTest.php ├── BladeHasSectionTest.php ├── BladeHelpersTest.php ├── BladeIfAuthStatementsTest.php ├── BladeIfEmptyStatementsTest.php ├── BladeIfGuestStatementsTest.php ├── BladeIfIssetStatementsTest.php ├── BladeIfStatementsTest.php ├── BladeIncludesTest.php ├── BladeInjectTest.php ├── BladeJsTest.php ├── BladeJsonTest.php ├── BladeLangTest.php ├── BladeOverwriteSectionTest.php ├── BladePhpStatementsTest.php ├── BladePrependTest.php ├── BladePropsTest.php ├── BladePushTest.php ├── BladeSectionMissingTest.php ├── BladeSectionTest.php ├── BladeShowTest.php ├── BladeStackTest.php ├── BladeStopSectionTest.php ├── BladeUnlessStatementsTest.php ├── BladeUnsetStatementsTest.php ├── BladeUseTest.php ├── BladeVerbatimTest.php ├── BladeWhileStatementsTest.php ├── BladeYieldTest.php ├── CompilerDetailsTest.php ├── ComponentStub.php ├── CoreDirectivesWithoutArgumentsTest.php ├── CustomCompiler.php ├── CustomComponentTagCompilersTest.php ├── CustomTransformer.php ├── InputWithSlot.php ├── NodeTransformerTest.php ├── TestAlertComponent.php └── TestProfileComponent.php ├── CompilerServices ├── ArgStringSplitterTest.php ├── AttributeCompilerTest.php ├── DirectiveDetailsTest.php ├── LoopVariablesTest.php ├── StringSplitterTest.php ├── StringUnwrappingTest.php └── StringUtilitiesTest.php ├── DocumentSplitter.php ├── Documents └── GeneralDocumentDetailsTest.php ├── Examples └── DocumentExampleTest.php ├── Feature └── ExampleTest.php ├── Fragments └── BasicFragmentsTest.php ├── Mutations ├── CommentMutationsTest.php ├── ComponentMutationsTest.php ├── ComponentParametersTest.php ├── DirectiveMutationsTest.php ├── EchoNodeMutationsTest.php ├── LiteralMutationsTest.php ├── PhpBlockMutationsTest.php ├── PhpTagMutationsTest.php └── VerbatimMutationsTest.php ├── Parser ├── BasicParserNodesTest.php ├── CommentsTest.php ├── CustomTagComponentsTest.php ├── DirectiveDiscoveryTest.php ├── DirectiveNamesTest.php ├── DirectiveParametersTest.php ├── EchoTest.php ├── EscapedContentTest.php ├── IncompleteDocumentsTest.php ├── NodeErrorsTest.php ├── ParserDetailsTest.php ├── PhpBlockTest.php ├── PhpTagTest.php ├── PositionsTest.php ├── TagComponentsTest.php └── VerbatimTest.php ├── ParserErrors └── GeneralParserErrorsTest.php ├── ParserTestCase.php ├── Pest.php ├── Reflection ├── BasicReflectionTest.php ├── ChainedClosingDirectivesTest.php ├── CommentsTest.php ├── ComponentReflectionTest.php ├── DirectiveDetailsTest.php ├── NodeCloningTest.php ├── NodePartitioningTest.php ├── NodeQueriesTest.php └── StructureReflectionTest.php ├── ScratchTest.php ├── Structures ├── ComponentPairingTest.php ├── ComponentTagChildrenTest.php ├── ConditionPairingTest.php ├── ConditionStructureTest.php ├── DirectivePairTest.php ├── ForElseStructureTest.php ├── ParentNodesTest.php ├── StructureDocumentsTest.php ├── StructureQueryTest.php └── SwitchStructureTest.php ├── Support └── PathsTest.php ├── TestCase.php ├── Unit └── ExampleTest.php ├── Validation ├── BasicValidatorDetailsTest.php ├── ComponentParameterNameSpacingTest.php ├── ComponentShorthandVariableParameterTest.php ├── DebugDirectiveTest.php ├── DirectiveArgumentSpacingTest.php ├── DirectiveArgumentSpanningLinesTest.php ├── DirectiveSpacingTest.php ├── DuplicateConditionExpressionsTest.php ├── EmptyConditionTest.php ├── ForElseStructureTest.php ├── InconsistentDirectiveCasingTest.php ├── InconsistentIndentationLevelTest.php ├── NoArgumentsTest.php ├── NodeCompilationTest.php ├── RecursiveIncludeTest.php ├── RequiredArgumentsTest.php ├── RequiresOpenTest.php ├── SwitchTest.php └── UnpairedConditionTest.php ├── Workspaces ├── BasicWorkspaceDetailsTest.php └── WorkspaceProxyTest.php ├── __fixtures └── workspaces │ ├── one │ ├── one.blade.php │ └── two.blade.php │ └── two │ ├── first.blade.php │ └── second.blade.php └── bootstrap.php /.art/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/.art/banner.png -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: johnathonkoster -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/.gitignore -------------------------------------------------------------------------------- /.phpunit.cache/test-results: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/.phpunit.cache/test-results -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/composer.json -------------------------------------------------------------------------------- /config/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/config/validation.php -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/license.md -------------------------------------------------------------------------------- /phpunit.dist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/phpunit.dist.xml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/readme.md -------------------------------------------------------------------------------- /src/Compiler/AppendState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Compiler/AppendState.php -------------------------------------------------------------------------------- /src/Compiler/Attributes/ArgumentRequirement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Compiler/Attributes/ArgumentRequirement.php -------------------------------------------------------------------------------- /src/Compiler/Attributes/CompilesDirective.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Compiler/Attributes/CompilesDirective.php -------------------------------------------------------------------------------- /src/Compiler/Attributes/StructureType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Compiler/Attributes/StructureType.php -------------------------------------------------------------------------------- /src/Compiler/CompilationTarget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Compiler/CompilationTarget.php -------------------------------------------------------------------------------- /src/Compiler/Compiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Compiler/Compiler.php -------------------------------------------------------------------------------- /src/Compiler/CompilerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Compiler/CompilerFactory.php -------------------------------------------------------------------------------- /src/Compiler/CompilerServices/ArgStringSplitter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Compiler/CompilerServices/ArgStringSplitter.php -------------------------------------------------------------------------------- /src/Compiler/CompilerServices/AttributeCompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Compiler/CompilerServices/AttributeCompiler.php -------------------------------------------------------------------------------- /src/Compiler/CompilerServices/CoreDirectiveRetriever.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Compiler/CompilerServices/CoreDirectiveRetriever.php -------------------------------------------------------------------------------- /src/Compiler/CompilerServices/DirectiveNameValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Compiler/CompilerServices/DirectiveNameValidator.php -------------------------------------------------------------------------------- /src/Compiler/CompilerServices/LiteralContentHelpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Compiler/CompilerServices/LiteralContentHelpers.php -------------------------------------------------------------------------------- /src/Compiler/CompilerServices/LoopVariablesExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Compiler/CompilerServices/LoopVariablesExtractor.php -------------------------------------------------------------------------------- /src/Compiler/CompilerServices/StringSplitter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Compiler/CompilerServices/StringSplitter.php -------------------------------------------------------------------------------- /src/Compiler/CompilerServices/StringUtilities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Compiler/CompilerServices/StringUtilities.php -------------------------------------------------------------------------------- /src/Compiler/ComponentNodeCompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Compiler/ComponentNodeCompiler.php -------------------------------------------------------------------------------- /src/Compiler/ComponentTagCompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Compiler/ComponentTagCompiler.php -------------------------------------------------------------------------------- /src/Compiler/Concerns/CompilesAuthorizations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Compiler/Concerns/CompilesAuthorizations.php -------------------------------------------------------------------------------- /src/Compiler/Concerns/CompilesClasses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Compiler/Concerns/CompilesClasses.php -------------------------------------------------------------------------------- /src/Compiler/Concerns/CompilesComponents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Compiler/Concerns/CompilesComponents.php -------------------------------------------------------------------------------- /src/Compiler/Concerns/CompilesConditionals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Compiler/Concerns/CompilesConditionals.php -------------------------------------------------------------------------------- /src/Compiler/Concerns/CompilesCustomDirectives.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Compiler/Concerns/CompilesCustomDirectives.php -------------------------------------------------------------------------------- /src/Compiler/Concerns/CompilesEchos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Compiler/Concerns/CompilesEchos.php -------------------------------------------------------------------------------- /src/Compiler/Concerns/CompilesErrors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Compiler/Concerns/CompilesErrors.php -------------------------------------------------------------------------------- /src/Compiler/Concerns/CompilesFragments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Compiler/Concerns/CompilesFragments.php -------------------------------------------------------------------------------- /src/Compiler/Concerns/CompilesHelpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Compiler/Concerns/CompilesHelpers.php -------------------------------------------------------------------------------- /src/Compiler/Concerns/CompilesIncludes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Compiler/Concerns/CompilesIncludes.php -------------------------------------------------------------------------------- /src/Compiler/Concerns/CompilesInjections.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Compiler/Concerns/CompilesInjections.php -------------------------------------------------------------------------------- /src/Compiler/Concerns/CompilesJs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Compiler/Concerns/CompilesJs.php -------------------------------------------------------------------------------- /src/Compiler/Concerns/CompilesJson.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Compiler/Concerns/CompilesJson.php -------------------------------------------------------------------------------- /src/Compiler/Concerns/CompilesLayouts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Compiler/Concerns/CompilesLayouts.php -------------------------------------------------------------------------------- /src/Compiler/Concerns/CompilesLoops.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Compiler/Concerns/CompilesLoops.php -------------------------------------------------------------------------------- /src/Compiler/Concerns/CompilesRawPhp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Compiler/Concerns/CompilesRawPhp.php -------------------------------------------------------------------------------- /src/Compiler/Concerns/CompilesStacks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Compiler/Concerns/CompilesStacks.php -------------------------------------------------------------------------------- /src/Compiler/Concerns/CompilesStyles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Compiler/Concerns/CompilesStyles.php -------------------------------------------------------------------------------- /src/Compiler/Concerns/CompilesTranslations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Compiler/Concerns/CompilesTranslations.php -------------------------------------------------------------------------------- /src/Compiler/Concerns/CompilesUseStatements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Compiler/Concerns/CompilesUseStatements.php -------------------------------------------------------------------------------- /src/Compiler/Concerns/CompilesVerbatim.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Compiler/Concerns/CompilesVerbatim.php -------------------------------------------------------------------------------- /src/Compiler/Concerns/ManagesCustomConditions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Compiler/Concerns/ManagesCustomConditions.php -------------------------------------------------------------------------------- /src/Compiler/Concerns/ManagesCustomDirectives.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Compiler/Concerns/ManagesCustomDirectives.php -------------------------------------------------------------------------------- /src/Compiler/StringBuffer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Compiler/StringBuffer.php -------------------------------------------------------------------------------- /src/Compiler/Transformers/NodeTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Compiler/Transformers/NodeTransformer.php -------------------------------------------------------------------------------- /src/Compiler/Transformers/RawTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Compiler/Transformers/RawTransformer.php -------------------------------------------------------------------------------- /src/Compiler/UnresolvableComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Compiler/UnresolvableComponent.php -------------------------------------------------------------------------------- /src/Console/Commands/ValidateBladeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Console/Commands/ValidateBladeCommand.php -------------------------------------------------------------------------------- /src/Contracts/CustomComponentTagCompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Contracts/CustomComponentTagCompiler.php -------------------------------------------------------------------------------- /src/Contracts/PathFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Contracts/PathFormatter.php -------------------------------------------------------------------------------- /src/Document/Concerns/ManagesDocumentStructures.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Document/Concerns/ManagesDocumentStructures.php -------------------------------------------------------------------------------- /src/Document/Concerns/ManagesDocumentValidation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Document/Concerns/ManagesDocumentValidation.php -------------------------------------------------------------------------------- /src/Document/Concerns/ManagesTextExtraction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Document/Concerns/ManagesTextExtraction.php -------------------------------------------------------------------------------- /src/Document/Document.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Document/Document.php -------------------------------------------------------------------------------- /src/Document/DocumentCompilerOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Document/DocumentCompilerOptions.php -------------------------------------------------------------------------------- /src/Document/DocumentFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Document/DocumentFactory.php -------------------------------------------------------------------------------- /src/Document/DocumentOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Document/DocumentOptions.php -------------------------------------------------------------------------------- /src/Document/NodeUtilities/QueriesComments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Document/NodeUtilities/QueriesComments.php -------------------------------------------------------------------------------- /src/Document/NodeUtilities/QueriesComponents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Document/NodeUtilities/QueriesComponents.php -------------------------------------------------------------------------------- /src/Document/NodeUtilities/QueriesGeneralNodes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Document/NodeUtilities/QueriesGeneralNodes.php -------------------------------------------------------------------------------- /src/Document/NodeUtilities/QueriesGenerics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Document/NodeUtilities/QueriesGenerics.php -------------------------------------------------------------------------------- /src/Document/NodeUtilities/QueriesRelativeNodes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Document/NodeUtilities/QueriesRelativeNodes.php -------------------------------------------------------------------------------- /src/Document/NodeUtilities/QueriesStructures.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Document/NodeUtilities/QueriesStructures.php -------------------------------------------------------------------------------- /src/Document/PartitionResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Document/PartitionResult.php -------------------------------------------------------------------------------- /src/Document/Structures/Concerns/ConstructsConditions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Document/Structures/Concerns/ConstructsConditions.php -------------------------------------------------------------------------------- /src/Document/Structures/Concerns/ConstructsForElse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Document/Structures/Concerns/ConstructsForElse.php -------------------------------------------------------------------------------- /src/Document/Structures/Concerns/ConstructsSwitchStatements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Document/Structures/Concerns/ConstructsSwitchStatements.php -------------------------------------------------------------------------------- /src/Document/Structures/Concerns/ManagesConditionMetaData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Document/Structures/Concerns/ManagesConditionMetaData.php -------------------------------------------------------------------------------- /src/Document/Structures/Concerns/ManagesDirectiveIndexes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Document/Structures/Concerns/ManagesDirectiveIndexes.php -------------------------------------------------------------------------------- /src/Document/Structures/Concerns/PairsComponentTags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Document/Structures/Concerns/PairsComponentTags.php -------------------------------------------------------------------------------- /src/Document/Structures/Concerns/PairsConditionalStructures.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Document/Structures/Concerns/PairsConditionalStructures.php -------------------------------------------------------------------------------- /src/Document/Structures/Concerns/ResolvesStructureDocuments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Document/Structures/Concerns/ResolvesStructureDocuments.php -------------------------------------------------------------------------------- /src/Document/Structures/Concerns/ScansForClosingPairs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Document/Structures/Concerns/ScansForClosingPairs.php -------------------------------------------------------------------------------- /src/Document/Structures/ConditionPairStackItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Document/Structures/ConditionPairStackItem.php -------------------------------------------------------------------------------- /src/Document/Structures/DirectiveClosingAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Document/Structures/DirectiveClosingAnalyzer.php -------------------------------------------------------------------------------- /src/Document/Structures/DirectiveStackItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Document/Structures/DirectiveStackItem.php -------------------------------------------------------------------------------- /src/Document/Structures/RelationshipAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Document/Structures/RelationshipAnalyzer.php -------------------------------------------------------------------------------- /src/Document/Structures/StructurePairAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Document/Structures/StructurePairAnalyzer.php -------------------------------------------------------------------------------- /src/Errors/BladeError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Errors/BladeError.php -------------------------------------------------------------------------------- /src/Errors/ConstructContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Errors/ConstructContext.php -------------------------------------------------------------------------------- /src/Errors/ErrorFamily.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Errors/ErrorFamily.php -------------------------------------------------------------------------------- /src/Errors/ErrorMessagePrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Errors/ErrorMessagePrinter.php -------------------------------------------------------------------------------- /src/Errors/ErrorType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Errors/ErrorType.php -------------------------------------------------------------------------------- /src/Errors/Exceptions/CompilationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Errors/Exceptions/CompilationException.php -------------------------------------------------------------------------------- /src/Errors/Exceptions/DuplicateParameterException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Errors/Exceptions/DuplicateParameterException.php -------------------------------------------------------------------------------- /src/Errors/Exceptions/InvalidCastException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Errors/Exceptions/InvalidCastException.php -------------------------------------------------------------------------------- /src/Errors/Exceptions/InvalidParameterException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Errors/Exceptions/InvalidParameterException.php -------------------------------------------------------------------------------- /src/Errors/Exceptions/UnsupportedNodeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Errors/Exceptions/UnsupportedNodeException.php -------------------------------------------------------------------------------- /src/Nodes/AbstractNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Nodes/AbstractNode.php -------------------------------------------------------------------------------- /src/Nodes/ArgumentContentType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Nodes/ArgumentContentType.php -------------------------------------------------------------------------------- /src/Nodes/ArgumentGroupNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Nodes/ArgumentGroupNode.php -------------------------------------------------------------------------------- /src/Nodes/BaseNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Nodes/BaseNode.php -------------------------------------------------------------------------------- /src/Nodes/CommentNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Nodes/CommentNode.php -------------------------------------------------------------------------------- /src/Nodes/Components/ComponentNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Nodes/Components/ComponentNode.php -------------------------------------------------------------------------------- /src/Nodes/Components/Concerns/ManagesComponentMetaData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Nodes/Components/Concerns/ManagesComponentMetaData.php -------------------------------------------------------------------------------- /src/Nodes/Components/Concerns/ManagesComponentParameters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Nodes/Components/Concerns/ManagesComponentParameters.php -------------------------------------------------------------------------------- /src/Nodes/Components/ParameterAttribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Nodes/Components/ParameterAttribute.php -------------------------------------------------------------------------------- /src/Nodes/Components/ParameterFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Nodes/Components/ParameterFactory.php -------------------------------------------------------------------------------- /src/Nodes/Components/ParameterNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Nodes/Components/ParameterNode.php -------------------------------------------------------------------------------- /src/Nodes/Components/ParameterType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Nodes/Components/ParameterType.php -------------------------------------------------------------------------------- /src/Nodes/Concerns/ContainsDocumentText.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Nodes/Concerns/ContainsDocumentText.php -------------------------------------------------------------------------------- /src/Nodes/Concerns/InteractsWithBladeErrors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Nodes/Concerns/InteractsWithBladeErrors.php -------------------------------------------------------------------------------- /src/Nodes/Concerns/ProvidesAccessToResolvedStructures.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Nodes/Concerns/ProvidesAccessToResolvedStructures.php -------------------------------------------------------------------------------- /src/Nodes/DirectiveNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Nodes/DirectiveNode.php -------------------------------------------------------------------------------- /src/Nodes/EchoNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Nodes/EchoNode.php -------------------------------------------------------------------------------- /src/Nodes/EchoType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Nodes/EchoType.php -------------------------------------------------------------------------------- /src/Nodes/Fragments/Fragment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Nodes/Fragments/Fragment.php -------------------------------------------------------------------------------- /src/Nodes/Fragments/FragmentParameter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Nodes/Fragments/FragmentParameter.php -------------------------------------------------------------------------------- /src/Nodes/Fragments/FragmentParameterType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Nodes/Fragments/FragmentParameterType.php -------------------------------------------------------------------------------- /src/Nodes/Fragments/FragmentPosition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Nodes/Fragments/FragmentPosition.php -------------------------------------------------------------------------------- /src/Nodes/Fragments/HtmlFragment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Nodes/Fragments/HtmlFragment.php -------------------------------------------------------------------------------- /src/Nodes/LiteralNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Nodes/LiteralNode.php -------------------------------------------------------------------------------- /src/Nodes/Loops/LoopVariables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Nodes/Loops/LoopVariables.php -------------------------------------------------------------------------------- /src/Nodes/NodeCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Nodes/NodeCollection.php -------------------------------------------------------------------------------- /src/Nodes/NodeIndexer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Nodes/NodeIndexer.php -------------------------------------------------------------------------------- /src/Nodes/PhpBlockNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Nodes/PhpBlockNode.php -------------------------------------------------------------------------------- /src/Nodes/PhpTagNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Nodes/PhpTagNode.php -------------------------------------------------------------------------------- /src/Nodes/PhpTagType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Nodes/PhpTagType.php -------------------------------------------------------------------------------- /src/Nodes/Position.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Nodes/Position.php -------------------------------------------------------------------------------- /src/Nodes/Structures/BaseStructureNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Nodes/Structures/BaseStructureNode.php -------------------------------------------------------------------------------- /src/Nodes/Structures/CaseStatement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Nodes/Structures/CaseStatement.php -------------------------------------------------------------------------------- /src/Nodes/Structures/Condition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Nodes/Structures/Condition.php -------------------------------------------------------------------------------- /src/Nodes/Structures/ConditionalBranch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Nodes/Structures/ConditionalBranch.php -------------------------------------------------------------------------------- /src/Nodes/Structures/ForElse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Nodes/Structures/ForElse.php -------------------------------------------------------------------------------- /src/Nodes/Structures/SwitchStatement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Nodes/Structures/SwitchStatement.php -------------------------------------------------------------------------------- /src/Nodes/VerbatimNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Nodes/VerbatimNode.php -------------------------------------------------------------------------------- /src/Parser/AbstractParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Parser/AbstractParser.php -------------------------------------------------------------------------------- /src/Parser/BladeKeywords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Parser/BladeKeywords.php -------------------------------------------------------------------------------- /src/Parser/ComponentParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Parser/ComponentParser.php -------------------------------------------------------------------------------- /src/Parser/CoreDirectives.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Parser/CoreDirectives.php -------------------------------------------------------------------------------- /src/Parser/DocumentParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Parser/DocumentParser.php -------------------------------------------------------------------------------- /src/Parser/DocumentParserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Parser/DocumentParserFactory.php -------------------------------------------------------------------------------- /src/Parser/HtmlFragments/BaseFragmentParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Parser/HtmlFragments/BaseFragmentParser.php -------------------------------------------------------------------------------- /src/Parser/HtmlFragments/FragmentAttributeParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Parser/HtmlFragments/FragmentAttributeParser.php -------------------------------------------------------------------------------- /src/Parser/HtmlFragments/FragmentPositionsAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Parser/HtmlFragments/FragmentPositionsAnalyzer.php -------------------------------------------------------------------------------- /src/Parser/HtmlFragments/FragmentsDocumentParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Parser/HtmlFragments/FragmentsDocumentParser.php -------------------------------------------------------------------------------- /src/Parser/IndexElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Parser/IndexElement.php -------------------------------------------------------------------------------- /src/Parser/IndexElementType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Parser/IndexElementType.php -------------------------------------------------------------------------------- /src/Parser/ScanResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Parser/ScanResult.php -------------------------------------------------------------------------------- /src/Providers/ValidatorServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Providers/ValidatorServiceProvider.php -------------------------------------------------------------------------------- /src/ServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/ServiceProvider.php -------------------------------------------------------------------------------- /src/Support/BladeCompilerDetailsFetcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Support/BladeCompilerDetailsFetcher.php -------------------------------------------------------------------------------- /src/Support/Utf8StringIterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Support/Utf8StringIterator.php -------------------------------------------------------------------------------- /src/Support/Utilities/Paths.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Support/Utilities/Paths.php -------------------------------------------------------------------------------- /src/Validation/AbstractDocumentValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Validation/AbstractDocumentValidator.php -------------------------------------------------------------------------------- /src/Validation/AbstractNodeValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Validation/AbstractNodeValidator.php -------------------------------------------------------------------------------- /src/Validation/AbstractValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Validation/AbstractValidator.php -------------------------------------------------------------------------------- /src/Validation/BladeValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Validation/BladeValidator.php -------------------------------------------------------------------------------- /src/Validation/PhpSyntaxValidationResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Validation/PhpSyntaxValidationResult.php -------------------------------------------------------------------------------- /src/Validation/PhpSyntaxValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Validation/PhpSyntaxValidator.php -------------------------------------------------------------------------------- /src/Validation/ValidationResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Validation/ValidationResult.php -------------------------------------------------------------------------------- /src/Validation/ValidatorFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Validation/ValidatorFactory.php -------------------------------------------------------------------------------- /src/Validation/Validators/ComponentParameterNameSpacingValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Validation/Validators/ComponentParameterNameSpacingValidator.php -------------------------------------------------------------------------------- /src/Validation/Validators/ComponentShorthandVariableParameterValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Validation/Validators/ComponentShorthandVariableParameterValidator.php -------------------------------------------------------------------------------- /src/Validation/Validators/Concerns/AcceptsCustomDirectives.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Validation/Validators/Concerns/AcceptsCustomDirectives.php -------------------------------------------------------------------------------- /src/Validation/Validators/Concerns/CanIgnoreDirectives.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Validation/Validators/Concerns/CanIgnoreDirectives.php -------------------------------------------------------------------------------- /src/Validation/Validators/DebugDirectiveValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Validation/Validators/DebugDirectiveValidator.php -------------------------------------------------------------------------------- /src/Validation/Validators/DirectiveArgumentSpacingValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Validation/Validators/DirectiveArgumentSpacingValidator.php -------------------------------------------------------------------------------- /src/Validation/Validators/DirectiveArgumentsSpanningLinesValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Validation/Validators/DirectiveArgumentsSpanningLinesValidator.php -------------------------------------------------------------------------------- /src/Validation/Validators/DirectiveSpacingValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Validation/Validators/DirectiveSpacingValidator.php -------------------------------------------------------------------------------- /src/Validation/Validators/Documents/InvalidPhpDocumentValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Validation/Validators/Documents/InvalidPhpDocumentValidator.php -------------------------------------------------------------------------------- /src/Validation/Validators/DuplicateConditionExpressionsValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Validation/Validators/DuplicateConditionExpressionsValidator.php -------------------------------------------------------------------------------- /src/Validation/Validators/EmptyConditionValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Validation/Validators/EmptyConditionValidator.php -------------------------------------------------------------------------------- /src/Validation/Validators/ForElseStructureValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Validation/Validators/ForElseStructureValidator.php -------------------------------------------------------------------------------- /src/Validation/Validators/InconsistentDirectiveCasingValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Validation/Validators/InconsistentDirectiveCasingValidator.php -------------------------------------------------------------------------------- /src/Validation/Validators/InconsistentIndentationLevelValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Validation/Validators/InconsistentIndentationLevelValidator.php -------------------------------------------------------------------------------- /src/Validation/Validators/NoArgumentsValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Validation/Validators/NoArgumentsValidator.php -------------------------------------------------------------------------------- /src/Validation/Validators/NodeCompilationValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Validation/Validators/NodeCompilationValidator.php -------------------------------------------------------------------------------- /src/Validation/Validators/RecursiveIncludeValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Validation/Validators/RecursiveIncludeValidator.php -------------------------------------------------------------------------------- /src/Validation/Validators/RequiredArgumentsValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Validation/Validators/RequiredArgumentsValidator.php -------------------------------------------------------------------------------- /src/Validation/Validators/RequiresOpenValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Validation/Validators/RequiresOpenValidator.php -------------------------------------------------------------------------------- /src/Validation/Validators/SwitchValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Validation/Validators/SwitchValidator.php -------------------------------------------------------------------------------- /src/Validation/Validators/UnpairedConditionValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Validation/Validators/UnpairedConditionValidator.php -------------------------------------------------------------------------------- /src/Validation/Workspaces/PhpStanWrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Validation/Workspaces/PhpStanWrapper.php -------------------------------------------------------------------------------- /src/Workspaces/Concerns/CompilesWorkspace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Workspaces/Concerns/CompilesWorkspace.php -------------------------------------------------------------------------------- /src/Workspaces/Concerns/ManagesWorkspaceErrors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Workspaces/Concerns/ManagesWorkspaceErrors.php -------------------------------------------------------------------------------- /src/Workspaces/Concerns/ProxiesDocumentCalls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Workspaces/Concerns/ProxiesDocumentCalls.php -------------------------------------------------------------------------------- /src/Workspaces/Concerns/ValidatesWorkspaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Workspaces/Concerns/ValidatesWorkspaces.php -------------------------------------------------------------------------------- /src/Workspaces/TempPathFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Workspaces/TempPathFormatter.php -------------------------------------------------------------------------------- /src/Workspaces/Workspace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/src/Workspaces/Workspace.php -------------------------------------------------------------------------------- /tests/Compiler/BladeAppendTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladeAppendTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladeBreakStatementsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladeBreakStatementsTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladeCanStatementsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladeCanStatementsTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladeCananyStatementsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladeCananyStatementsTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladeCannotStatementsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladeCannotStatementsTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladeCheckedStatementsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladeCheckedStatementsTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladeClassTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladeClassTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladeCommentsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladeCommentsTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladeComponentFirstTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladeComponentFirstTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladeComponentTagCompilerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladeComponentTagCompilerTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladeComponentsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladeComponentsTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladeContinueStatementsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladeContinueStatementsTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladeCustomTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladeCustomTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladeEchoHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladeEchoHandlerTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladeEchoTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladeEchoTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladeElseAuthStatementsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladeElseAuthStatementsTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladeElseGuestStatementsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladeElseGuestStatementsTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladeElseIfStatementsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladeElseIfStatementsTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladeElseStatementsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladeElseStatementsTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladeEndSectionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladeEndSectionsTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladeEnvironmentStatementsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladeEnvironmentStatementsTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladeErrorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladeErrorTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladeEscapedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladeEscapedTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladeExpressionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladeExpressionTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladeExtensionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladeExtensionsTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladeForStatementsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladeForStatementsTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladeForeachStatementsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladeForeachStatementsTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladeForelseStatementsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladeForelseStatementsTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladeFragmentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladeFragmentTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladeHasSectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladeHasSectionTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladeHelpersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladeHelpersTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladeIfAuthStatementsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladeIfAuthStatementsTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladeIfEmptyStatementsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladeIfEmptyStatementsTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladeIfGuestStatementsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladeIfGuestStatementsTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladeIfIssetStatementsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladeIfIssetStatementsTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladeIfStatementsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladeIfStatementsTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladeIncludesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladeIncludesTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladeInjectTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladeInjectTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladeJsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladeJsTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladeJsonTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladeJsonTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladeLangTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladeLangTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladeOverwriteSectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladeOverwriteSectionTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladePhpStatementsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladePhpStatementsTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladePrependTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladePrependTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladePropsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladePropsTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladePushTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladePushTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladeSectionMissingTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladeSectionMissingTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladeSectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladeSectionTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladeShowTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladeShowTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladeStackTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladeStackTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladeStopSectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladeStopSectionTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladeUnlessStatementsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladeUnlessStatementsTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladeUnsetStatementsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladeUnsetStatementsTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladeUseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladeUseTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladeVerbatimTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladeVerbatimTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladeWhileStatementsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladeWhileStatementsTest.php -------------------------------------------------------------------------------- /tests/Compiler/BladeYieldTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/BladeYieldTest.php -------------------------------------------------------------------------------- /tests/Compiler/CompilerDetailsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/CompilerDetailsTest.php -------------------------------------------------------------------------------- /tests/Compiler/ComponentStub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/ComponentStub.php -------------------------------------------------------------------------------- /tests/Compiler/CoreDirectivesWithoutArgumentsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/CoreDirectivesWithoutArgumentsTest.php -------------------------------------------------------------------------------- /tests/Compiler/CustomCompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/CustomCompiler.php -------------------------------------------------------------------------------- /tests/Compiler/CustomComponentTagCompilersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/CustomComponentTagCompilersTest.php -------------------------------------------------------------------------------- /tests/Compiler/CustomTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/CustomTransformer.php -------------------------------------------------------------------------------- /tests/Compiler/InputWithSlot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/InputWithSlot.php -------------------------------------------------------------------------------- /tests/Compiler/NodeTransformerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/NodeTransformerTest.php -------------------------------------------------------------------------------- /tests/Compiler/TestAlertComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/TestAlertComponent.php -------------------------------------------------------------------------------- /tests/Compiler/TestProfileComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Compiler/TestProfileComponent.php -------------------------------------------------------------------------------- /tests/CompilerServices/ArgStringSplitterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/CompilerServices/ArgStringSplitterTest.php -------------------------------------------------------------------------------- /tests/CompilerServices/AttributeCompilerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/CompilerServices/AttributeCompilerTest.php -------------------------------------------------------------------------------- /tests/CompilerServices/DirectiveDetailsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/CompilerServices/DirectiveDetailsTest.php -------------------------------------------------------------------------------- /tests/CompilerServices/LoopVariablesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/CompilerServices/LoopVariablesTest.php -------------------------------------------------------------------------------- /tests/CompilerServices/StringSplitterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/CompilerServices/StringSplitterTest.php -------------------------------------------------------------------------------- /tests/CompilerServices/StringUnwrappingTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/CompilerServices/StringUnwrappingTest.php -------------------------------------------------------------------------------- /tests/CompilerServices/StringUtilitiesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/CompilerServices/StringUtilitiesTest.php -------------------------------------------------------------------------------- /tests/DocumentSplitter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/DocumentSplitter.php -------------------------------------------------------------------------------- /tests/Documents/GeneralDocumentDetailsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Documents/GeneralDocumentDetailsTest.php -------------------------------------------------------------------------------- /tests/Examples/DocumentExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Examples/DocumentExampleTest.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/Fragments/BasicFragmentsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Fragments/BasicFragmentsTest.php -------------------------------------------------------------------------------- /tests/Mutations/CommentMutationsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Mutations/CommentMutationsTest.php -------------------------------------------------------------------------------- /tests/Mutations/ComponentMutationsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Mutations/ComponentMutationsTest.php -------------------------------------------------------------------------------- /tests/Mutations/ComponentParametersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Mutations/ComponentParametersTest.php -------------------------------------------------------------------------------- /tests/Mutations/DirectiveMutationsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Mutations/DirectiveMutationsTest.php -------------------------------------------------------------------------------- /tests/Mutations/EchoNodeMutationsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Mutations/EchoNodeMutationsTest.php -------------------------------------------------------------------------------- /tests/Mutations/LiteralMutationsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Mutations/LiteralMutationsTest.php -------------------------------------------------------------------------------- /tests/Mutations/PhpBlockMutationsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Mutations/PhpBlockMutationsTest.php -------------------------------------------------------------------------------- /tests/Mutations/PhpTagMutationsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Mutations/PhpTagMutationsTest.php -------------------------------------------------------------------------------- /tests/Mutations/VerbatimMutationsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Mutations/VerbatimMutationsTest.php -------------------------------------------------------------------------------- /tests/Parser/BasicParserNodesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Parser/BasicParserNodesTest.php -------------------------------------------------------------------------------- /tests/Parser/CommentsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Parser/CommentsTest.php -------------------------------------------------------------------------------- /tests/Parser/CustomTagComponentsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Parser/CustomTagComponentsTest.php -------------------------------------------------------------------------------- /tests/Parser/DirectiveDiscoveryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Parser/DirectiveDiscoveryTest.php -------------------------------------------------------------------------------- /tests/Parser/DirectiveNamesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Parser/DirectiveNamesTest.php -------------------------------------------------------------------------------- /tests/Parser/DirectiveParametersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Parser/DirectiveParametersTest.php -------------------------------------------------------------------------------- /tests/Parser/EchoTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Parser/EchoTest.php -------------------------------------------------------------------------------- /tests/Parser/EscapedContentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Parser/EscapedContentTest.php -------------------------------------------------------------------------------- /tests/Parser/IncompleteDocumentsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Parser/IncompleteDocumentsTest.php -------------------------------------------------------------------------------- /tests/Parser/NodeErrorsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Parser/NodeErrorsTest.php -------------------------------------------------------------------------------- /tests/Parser/ParserDetailsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Parser/ParserDetailsTest.php -------------------------------------------------------------------------------- /tests/Parser/PhpBlockTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Parser/PhpBlockTest.php -------------------------------------------------------------------------------- /tests/Parser/PhpTagTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Parser/PhpTagTest.php -------------------------------------------------------------------------------- /tests/Parser/PositionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Parser/PositionsTest.php -------------------------------------------------------------------------------- /tests/Parser/TagComponentsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Parser/TagComponentsTest.php -------------------------------------------------------------------------------- /tests/Parser/VerbatimTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Parser/VerbatimTest.php -------------------------------------------------------------------------------- /tests/ParserErrors/GeneralParserErrorsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/ParserErrors/GeneralParserErrorsTest.php -------------------------------------------------------------------------------- /tests/ParserTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/ParserTestCase.php -------------------------------------------------------------------------------- /tests/Pest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Pest.php -------------------------------------------------------------------------------- /tests/Reflection/BasicReflectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Reflection/BasicReflectionTest.php -------------------------------------------------------------------------------- /tests/Reflection/ChainedClosingDirectivesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Reflection/ChainedClosingDirectivesTest.php -------------------------------------------------------------------------------- /tests/Reflection/CommentsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Reflection/CommentsTest.php -------------------------------------------------------------------------------- /tests/Reflection/ComponentReflectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Reflection/ComponentReflectionTest.php -------------------------------------------------------------------------------- /tests/Reflection/DirectiveDetailsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Reflection/DirectiveDetailsTest.php -------------------------------------------------------------------------------- /tests/Reflection/NodeCloningTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Reflection/NodeCloningTest.php -------------------------------------------------------------------------------- /tests/Reflection/NodePartitioningTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Reflection/NodePartitioningTest.php -------------------------------------------------------------------------------- /tests/Reflection/NodeQueriesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Reflection/NodeQueriesTest.php -------------------------------------------------------------------------------- /tests/Reflection/StructureReflectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Reflection/StructureReflectionTest.php -------------------------------------------------------------------------------- /tests/ScratchTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/ScratchTest.php -------------------------------------------------------------------------------- /tests/Structures/ComponentPairingTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Structures/ComponentPairingTest.php -------------------------------------------------------------------------------- /tests/Structures/ComponentTagChildrenTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Structures/ComponentTagChildrenTest.php -------------------------------------------------------------------------------- /tests/Structures/ConditionPairingTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Structures/ConditionPairingTest.php -------------------------------------------------------------------------------- /tests/Structures/ConditionStructureTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Structures/ConditionStructureTest.php -------------------------------------------------------------------------------- /tests/Structures/DirectivePairTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Structures/DirectivePairTest.php -------------------------------------------------------------------------------- /tests/Structures/ForElseStructureTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Structures/ForElseStructureTest.php -------------------------------------------------------------------------------- /tests/Structures/ParentNodesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Structures/ParentNodesTest.php -------------------------------------------------------------------------------- /tests/Structures/StructureDocumentsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Structures/StructureDocumentsTest.php -------------------------------------------------------------------------------- /tests/Structures/StructureQueryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Structures/StructureQueryTest.php -------------------------------------------------------------------------------- /tests/Structures/SwitchStructureTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Structures/SwitchStructureTest.php -------------------------------------------------------------------------------- /tests/Support/PathsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Support/PathsTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /tests/Validation/BasicValidatorDetailsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Validation/BasicValidatorDetailsTest.php -------------------------------------------------------------------------------- /tests/Validation/ComponentParameterNameSpacingTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Validation/ComponentParameterNameSpacingTest.php -------------------------------------------------------------------------------- /tests/Validation/ComponentShorthandVariableParameterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Validation/ComponentShorthandVariableParameterTest.php -------------------------------------------------------------------------------- /tests/Validation/DebugDirectiveTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Validation/DebugDirectiveTest.php -------------------------------------------------------------------------------- /tests/Validation/DirectiveArgumentSpacingTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Validation/DirectiveArgumentSpacingTest.php -------------------------------------------------------------------------------- /tests/Validation/DirectiveArgumentSpanningLinesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Validation/DirectiveArgumentSpanningLinesTest.php -------------------------------------------------------------------------------- /tests/Validation/DirectiveSpacingTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Validation/DirectiveSpacingTest.php -------------------------------------------------------------------------------- /tests/Validation/DuplicateConditionExpressionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Validation/DuplicateConditionExpressionsTest.php -------------------------------------------------------------------------------- /tests/Validation/EmptyConditionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Validation/EmptyConditionTest.php -------------------------------------------------------------------------------- /tests/Validation/ForElseStructureTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Validation/ForElseStructureTest.php -------------------------------------------------------------------------------- /tests/Validation/InconsistentDirectiveCasingTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Validation/InconsistentDirectiveCasingTest.php -------------------------------------------------------------------------------- /tests/Validation/InconsistentIndentationLevelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Validation/InconsistentIndentationLevelTest.php -------------------------------------------------------------------------------- /tests/Validation/NoArgumentsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Validation/NoArgumentsTest.php -------------------------------------------------------------------------------- /tests/Validation/NodeCompilationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Validation/NodeCompilationTest.php -------------------------------------------------------------------------------- /tests/Validation/RecursiveIncludeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Validation/RecursiveIncludeTest.php -------------------------------------------------------------------------------- /tests/Validation/RequiredArgumentsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Validation/RequiredArgumentsTest.php -------------------------------------------------------------------------------- /tests/Validation/RequiresOpenTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Validation/RequiresOpenTest.php -------------------------------------------------------------------------------- /tests/Validation/SwitchTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Validation/SwitchTest.php -------------------------------------------------------------------------------- /tests/Validation/UnpairedConditionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Validation/UnpairedConditionTest.php -------------------------------------------------------------------------------- /tests/Workspaces/BasicWorkspaceDetailsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Workspaces/BasicWorkspaceDetailsTest.php -------------------------------------------------------------------------------- /tests/Workspaces/WorkspaceProxyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/Workspaces/WorkspaceProxyTest.php -------------------------------------------------------------------------------- /tests/__fixtures/workspaces/one/one.blade.php: -------------------------------------------------------------------------------- 1 | One 2 | @include ('something') 3 | Two -------------------------------------------------------------------------------- /tests/__fixtures/workspaces/one/two.blade.php: -------------------------------------------------------------------------------- 1 | Three 2 | @include ('something-else') 3 | Four -------------------------------------------------------------------------------- /tests/__fixtures/workspaces/two/first.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/__fixtures/workspaces/two/first.blade.php -------------------------------------------------------------------------------- /tests/__fixtures/workspaces/two/second.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stillat/blade-parser/HEAD/tests/__fixtures/workspaces/two/second.blade.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- 1 |