├── .github ├── ISSUE_TEMPLATE.md └── workflows │ ├── coverage.yml │ ├── multi-tester.yml │ ├── split.yml │ ├── style.yml │ └── tests.yml ├── .multi-tester.yml ├── composer.json ├── phpcs.xml ├── phpdoc.xml ├── phpunit.xml ├── phug ├── release.php ├── rulesets.xml └── src └── Phug ├── Ast ├── .styleci.yml ├── Ast │ ├── Node.php │ └── NodeInterface.php ├── AstException.php ├── composer.json ├── phpcs.xml └── phpunit.xml ├── Compiler ├── .styleci.yml ├── AbstractCompilerModule.php ├── Compiler.php ├── Compiler │ ├── AbstractNodeCompiler.php │ ├── Element │ │ └── BlockElement.php │ ├── Event │ │ ├── CompileEvent.php │ │ ├── ElementEvent.php │ │ ├── NodeEvent.php │ │ └── OutputEvent.php │ ├── Layout.php │ ├── Locator │ │ └── FileLocator.php │ ├── LocatorInterface.php │ ├── NodeCompiler │ │ ├── AbstractStatementNodeCompiler.php │ │ ├── AssignmentListNodeCompiler.php │ │ ├── AssignmentNodeCompiler.php │ │ ├── AttributeListNodeCompiler.php │ │ ├── AttributeNodeCompiler.php │ │ ├── BlockNodeCompiler.php │ │ ├── CaseNodeCompiler.php │ │ ├── CodeNodeCompiler.php │ │ ├── CommentNodeCompiler.php │ │ ├── ConditionalNodeCompiler.php │ │ ├── DoNodeCompiler.php │ │ ├── DoctypeNodeCompiler.php │ │ ├── DocumentNodeCompiler.php │ │ ├── EachNodeCompiler.php │ │ ├── ElementNodeCompiler.php │ │ ├── ExpressionNodeCompiler.php │ │ ├── FilterNodeCompiler.php │ │ ├── ForNodeCompiler.php │ │ ├── ImportNodeCompiler.php │ │ ├── KeywordNodeCompiler.php │ │ ├── MixinCallNodeCompiler.php │ │ ├── MixinNodeCompiler.php │ │ ├── TextNodeCompiler.php │ │ ├── VariableNodeCompiler.php │ │ ├── WhenNodeCompiler.php │ │ ├── WhileNodeCompiler.php │ │ └── YieldNodeCompiler.php │ ├── NodeCompilerInterface.php │ ├── NormalizerInterface.php │ ├── Util │ │ └── YieldHandlerTrait.php │ └── WithUpperLocatorInterface.php ├── CompilerEvent.php ├── CompilerException.php ├── CompilerInterface.php ├── CompilerModuleInterface.php ├── composer.json ├── phpcs.xml └── phpunit.xml ├── DependencyInjection ├── DependencyException.php ├── DependencyInjection.php ├── DependencyInjection │ ├── Dependency.php │ ├── FunctionWrapper.php │ └── Requirement.php ├── DependencyInjectionInterface.php ├── composer.json ├── phpcs.xml └── phpunit.xml ├── Event ├── .styleci.yml ├── Event.php ├── Event │ └── ListenerQueue.php ├── EventInterface.php ├── EventManagerInterface.php ├── EventManagerTrait.php ├── composer.json ├── phpcs.xml └── phpunit.xml ├── Formatter ├── AbstractFormatterModule.php ├── Formatter.php ├── Formatter │ ├── AbstractElement.php │ ├── AbstractFormat.php │ ├── AssignmentContainerInterface.php │ ├── Element │ │ ├── AbstractAssignmentContainerElement.php │ │ ├── AbstractMarkupElement.php │ │ ├── AbstractValueElement.php │ │ ├── AnonymousBlockElement.php │ │ ├── AssignmentElement.php │ │ ├── AttributeElement.php │ │ ├── CodeElement.php │ │ ├── CommentElement.php │ │ ├── DoctypeElement.php │ │ ├── DocumentElement.php │ │ ├── ExpressionElement.php │ │ ├── KeywordElement.php │ │ ├── MarkupElement.php │ │ ├── MixinCallElement.php │ │ ├── MixinElement.php │ │ ├── TextElement.php │ │ └── VariableElement.php │ ├── ElementInterface.php │ ├── Event │ │ ├── DependencyStorageEvent.php │ │ ├── FormatEvent.php │ │ ├── NewFormatEvent.php │ │ └── StringifyEvent.php │ ├── Format │ │ ├── BasicFormat.php │ │ ├── FramesetFormat.php │ │ ├── HtmlFormat.php │ │ ├── MobileFormat.php │ │ ├── OneDotOneFormat.php │ │ ├── PlistFormat.php │ │ ├── StrictFormat.php │ │ ├── TransitionalFormat.php │ │ ├── XhtmlFormat.php │ │ └── XmlFormat.php │ ├── FormatInterface.php │ ├── MarkupInterface.php │ ├── Partial │ │ ├── AssignmentHelpersTrait.php │ │ ├── HandleVariable.php │ │ ├── HelperTrait.php │ │ ├── MagicAccessorTrait.php │ │ └── PatternTrait.php │ └── Util │ │ ├── PhpUnwrap.php │ │ └── PhpUnwrapString.php ├── FormatterEvent.php ├── FormatterException.php ├── FormatterModuleInterface.php ├── composer.json ├── phpcs.xml └── phpunit.xml ├── Invoker ├── .styleci.yml ├── Invoker.php ├── InvokerInterface.php ├── composer.json ├── phpcs.xml └── phpunit.xml ├── Lexer ├── AbstractLexerModule.php ├── Lexer.php ├── Lexer │ ├── AbstractToken.php │ ├── Analyzer │ │ └── LineAnalyzer.php │ ├── EscapeTokenInterface.php │ ├── Event │ │ ├── EndLexEvent.php │ │ ├── LexEvent.php │ │ └── TokenEvent.php │ ├── HandleTokenInterface.php │ ├── Partial │ │ ├── DumpTokenTrait.php │ │ ├── IndentStyleTrait.php │ │ └── StateTrait.php │ ├── Scanner │ │ ├── AssignmentScanner.php │ │ ├── AttributeScanner.php │ │ ├── AutoCloseScanner.php │ │ ├── BlockScanner.php │ │ ├── CaseScanner.php │ │ ├── ClassScanner.php │ │ ├── CodeScanner.php │ │ ├── CommentScanner.php │ │ ├── ConditionalScanner.php │ │ ├── ControlStatementScanner.php │ │ ├── DoScanner.php │ │ ├── DoctypeScanner.php │ │ ├── DynamicTagScanner.php │ │ ├── EachScanner.php │ │ ├── ElementScanner.php │ │ ├── ExpansionScanner.php │ │ ├── ExpressionScanner.php │ │ ├── FilterScanner.php │ │ ├── ForScanner.php │ │ ├── IdScanner.php │ │ ├── ImportScanner.php │ │ ├── IndentationScanner.php │ │ ├── InterpolationScanner.php │ │ ├── KeywordScanner.php │ │ ├── MarkupScanner.php │ │ ├── MixinCallScanner.php │ │ ├── MixinScanner.php │ │ ├── MultilineScanner.php │ │ ├── NewLineScanner.php │ │ ├── Partial │ │ │ ├── NamespaceAndTernaryTrait.php │ │ │ └── TrailingOutdentHandlerTrait.php │ │ ├── RawTextScanner.php │ │ ├── SubScanner.php │ │ ├── TagScanner.php │ │ ├── TextBlockScanner.php │ │ ├── TextLineScanner.php │ │ ├── TextScanner.php │ │ ├── VariableScanner.php │ │ ├── WhenScanner.php │ │ ├── WhileScanner.php │ │ └── YieldScanner.php │ ├── ScannerInterface.php │ ├── State.php │ ├── Token │ │ ├── AssignmentToken.php │ │ ├── AttributeEndToken.php │ │ ├── AttributeStartToken.php │ │ ├── AttributeToken.php │ │ ├── AutoCloseToken.php │ │ ├── BlockToken.php │ │ ├── CaseToken.php │ │ ├── ClassToken.php │ │ ├── CodeToken.php │ │ ├── CommentToken.php │ │ ├── ConditionalToken.php │ │ ├── DoToken.php │ │ ├── DoctypeToken.php │ │ ├── EachToken.php │ │ ├── ExpansionToken.php │ │ ├── ExpressionToken.php │ │ ├── FilterToken.php │ │ ├── ForToken.php │ │ ├── IdToken.php │ │ ├── ImportToken.php │ │ ├── IndentToken.php │ │ ├── InterpolationEndToken.php │ │ ├── InterpolationStartToken.php │ │ ├── KeywordToken.php │ │ ├── MixinCallToken.php │ │ ├── MixinToken.php │ │ ├── NewLineToken.php │ │ ├── OutdentToken.php │ │ ├── TagInterpolationEndToken.php │ │ ├── TagInterpolationStartToken.php │ │ ├── TagToken.php │ │ ├── TextToken.php │ │ ├── VariableToken.php │ │ ├── WhenToken.php │ │ ├── WhileToken.php │ │ └── YieldToken.php │ └── TokenInterface.php ├── LexerEvent.php ├── LexerException.php ├── LexerInterface.php ├── LexerModuleInterface.php ├── Scanners.php ├── composer.json ├── phpcs.xml └── phpunit.xml ├── Parser ├── .styleci.yml ├── AbstractParserModule.php ├── Parser.php ├── Parser │ ├── Event │ │ ├── NodeEvent.php │ │ └── ParseEvent.php │ ├── Node.php │ ├── Node │ │ ├── AssignmentListNode.php │ │ ├── AssignmentNode.php │ │ ├── AttributeListNode.php │ │ ├── AttributeNode.php │ │ ├── BlockNode.php │ │ ├── CaseNode.php │ │ ├── CodeNode.php │ │ ├── CommentNode.php │ │ ├── ConditionalNode.php │ │ ├── DoNode.php │ │ ├── DoctypeNode.php │ │ ├── DocumentNode.php │ │ ├── EachNode.php │ │ ├── ElementNode.php │ │ ├── ExpressionNode.php │ │ ├── FilterNode.php │ │ ├── ForNode.php │ │ ├── ImportNode.php │ │ ├── KeywordNode.php │ │ ├── MixinCallNode.php │ │ ├── MixinNode.php │ │ ├── TextNode.php │ │ ├── VariableNode.php │ │ ├── WhenNode.php │ │ ├── WhileNode.php │ │ └── YieldNode.php │ ├── NodeInterface.php │ ├── State.php │ ├── TokenHandler │ │ ├── AbstractTokenHandler.php │ │ ├── AssignmentTokenHandler.php │ │ ├── AttributeEndTokenHandler.php │ │ ├── AttributeStartTokenHandler.php │ │ ├── AttributeTokenHandler.php │ │ ├── AutoCloseTokenHandler.php │ │ ├── BlockTokenHandler.php │ │ ├── CaseTokenHandler.php │ │ ├── ClassTokenHandler.php │ │ ├── CodeTokenHandler.php │ │ ├── CommentTokenHandler.php │ │ ├── ConditionalTokenHandler.php │ │ ├── DoTokenHandler.php │ │ ├── DoctypeTokenHandler.php │ │ ├── EachTokenHandler.php │ │ ├── ExpansionTokenHandler.php │ │ ├── ExpressionTokenHandler.php │ │ ├── FilterTokenHandler.php │ │ ├── ForTokenHandler.php │ │ ├── IdTokenHandler.php │ │ ├── ImportTokenHandler.php │ │ ├── IndentTokenHandler.php │ │ ├── InterpolationEndTokenHandler.php │ │ ├── InterpolationStartTokenHandler.php │ │ ├── KeywordTokenHandler.php │ │ ├── MixinCallTokenHandler.php │ │ ├── MixinTokenHandler.php │ │ ├── NewLineTokenHandler.php │ │ ├── OutdentTokenHandler.php │ │ ├── Partial │ │ │ └── StaticAttributeTrait.php │ │ ├── TagInterpolationEndTokenHandler.php │ │ ├── TagInterpolationStartTokenHandler.php │ │ ├── TagTokenHandler.php │ │ ├── TextTokenHandler.php │ │ ├── VariableTokenHandler.php │ │ ├── WhenTokenHandler.php │ │ ├── WhileTokenHandler.php │ │ └── YieldTokenHandler.php │ └── TokenHandlerInterface.php ├── ParserEvent.php ├── ParserException.php ├── ParserModuleInterface.php ├── composer.json ├── phpcs.xml └── phpunit.xml ├── Phug ├── Phug.php ├── Phug │ ├── AbstractExtension.php │ ├── AbstractPlugin.php │ ├── Cli.php │ ├── ExtensionInterface.php │ ├── Optimizer.php │ ├── OptionsBundle.php │ ├── Partial │ │ ├── CallbacksTrait.php │ │ ├── ExtensionsTrait.php │ │ ├── FacadeOptionsTrait.php │ │ ├── PluginEnablerTrait.php │ │ ├── PluginEventsTrait.php │ │ └── TokenGeneratorTrait.php │ ├── Phug.php │ └── PhugException.php ├── composer.json ├── phpcs.xml └── phpunit.xml ├── Reader ├── .styleci.yml ├── Reader.php ├── ReaderException.php ├── composer.json ├── phpcs.xml └── phpunit.xml ├── Renderer ├── AbstractRendererModule.php ├── Renderer.php ├── Renderer │ ├── AbstractAdapter.php │ ├── Adapter │ │ ├── EvalAdapter.php │ │ ├── FileAdapter.php │ │ ├── Stream │ │ │ └── Template.php │ │ └── StreamAdapter.php │ ├── AdapterInterface.php │ ├── CacheInterface.php │ ├── Event │ │ ├── HtmlEvent.php │ │ └── RenderEvent.php │ ├── Partial │ │ ├── AdapterTrait.php │ │ ├── CacheTrait.php │ │ ├── Debug │ │ │ ├── DebuggerTrait.php │ │ │ └── resources │ │ │ │ ├── index.pug │ │ │ │ ├── prism.css │ │ │ │ └── prism.js │ │ ├── FileAdapterCacheToolsTrait.php │ │ ├── FileSystemTrait.php │ │ ├── RegistryTrait.php │ │ ├── RendererOptionsTrait.php │ │ ├── RenderingFileTrait.php │ │ └── SharedVariablesTrait.php │ ├── Profiler │ │ ├── Dump.php │ │ ├── EventList.php │ │ ├── LinkDump.php │ │ ├── LinkedProcesses.php │ │ ├── Profile.php │ │ ├── ProfilerException.php │ │ ├── ProfilerLocatedException.php │ │ ├── ProfilerModule.php │ │ ├── TokenDump.php │ │ └── resources │ │ │ ├── index.pug │ │ │ ├── profiler.css │ │ │ └── profiler.js │ └── Task │ │ └── TasksGroup.php ├── RendererEvent.php ├── RendererException.php ├── RendererModuleInterface.php ├── composer.json ├── phpcs.xml └── phpunit.xml └── Util ├── .styleci.yml ├── CompatibilityUtil ├── TestCaseTyped.php └── TestCaseUntyped.php ├── Util ├── AbstractModule.php ├── AssociativeStorage.php ├── AttributesInterface.php ├── AttributesOrderInterface.php ├── AttributesStorage.php ├── BooleanSubjectInterface.php ├── Collection.php ├── DocumentLocationInterface.php ├── Exception │ └── LocatedException.php ├── Hasher.php ├── Joiner.php ├── ModuleContainerInterface.php ├── ModuleInterface.php ├── OptionInterface.php ├── OrderableInterface.php ├── OrderedValue.php ├── Partial │ ├── AssignmentTrait.php │ ├── AttributeTrait.php │ ├── AttributesOrderTrait.php │ ├── BlockTrait.php │ ├── CheckTrait.php │ ├── DocumentLocationTrait.php │ ├── EscapeTrait.php │ ├── FilterTrait.php │ ├── HashPrintTrait.php │ ├── LevelGetTrait.php │ ├── LevelTrait.php │ ├── LineGetTrait.php │ ├── MacroableTrait.php │ ├── ModeTrait.php │ ├── ModuleContainerTrait.php │ ├── NameTrait.php │ ├── OffsetGetTrait.php │ ├── OptionTrait.php │ ├── OrderTrait.php │ ├── PairTrait.php │ ├── PathGetTrait.php │ ├── PathTrait.php │ ├── RestTrait.php │ ├── ScopeTrait.php │ ├── SourceLocationTrait.php │ ├── StaticMemberTrait.php │ ├── SubjectTrait.php │ ├── TransformableTrait.php │ ├── ValueTrait.php │ ├── VariadicTrait.php │ └── VisibleTrait.php ├── PhpTokenizer.php ├── SandBox.php ├── ScopeInterface.php ├── SourceLocation.php ├── SourceLocationInterface.php ├── TestCase.php ├── TransformableInterface.php └── UnorderedArguments.php ├── composer.json ├── phpcs.xml └── phpunit.xml /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.github/workflows/multi-tester.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/.github/workflows/multi-tester.yml -------------------------------------------------------------------------------- /.github/workflows/split.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/.github/workflows/split.yml -------------------------------------------------------------------------------- /.github/workflows/style.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/.github/workflows/style.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.multi-tester.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/.multi-tester.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/composer.json -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/phpcs.xml -------------------------------------------------------------------------------- /phpdoc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/phpdoc.xml -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/phpunit.xml -------------------------------------------------------------------------------- /phug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/phug -------------------------------------------------------------------------------- /release.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/release.php -------------------------------------------------------------------------------- /rulesets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/rulesets.xml -------------------------------------------------------------------------------- /src/Phug/Ast/.styleci.yml: -------------------------------------------------------------------------------- 1 | disabled: 2 | - phpdoc_var_without_name 3 | -------------------------------------------------------------------------------- /src/Phug/Ast/Ast/Node.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Ast/Ast/Node.php -------------------------------------------------------------------------------- /src/Phug/Ast/Ast/NodeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Ast/Ast/NodeInterface.php -------------------------------------------------------------------------------- /src/Phug/Ast/AstException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Ast/AstException.php -------------------------------------------------------------------------------- /src/Phug/Ast/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Ast/composer.json -------------------------------------------------------------------------------- /src/Phug/Ast/phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Ast/phpcs.xml -------------------------------------------------------------------------------- /src/Phug/Ast/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Ast/phpunit.xml -------------------------------------------------------------------------------- /src/Phug/Compiler/.styleci.yml: -------------------------------------------------------------------------------- 1 | disabled: 2 | - phpdoc_var_without_name 3 | -------------------------------------------------------------------------------- /src/Phug/Compiler/AbstractCompilerModule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Compiler/AbstractCompilerModule.php -------------------------------------------------------------------------------- /src/Phug/Compiler/Compiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Compiler/Compiler.php -------------------------------------------------------------------------------- /src/Phug/Compiler/Compiler/AbstractNodeCompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Compiler/Compiler/AbstractNodeCompiler.php -------------------------------------------------------------------------------- /src/Phug/Compiler/Compiler/Element/BlockElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Compiler/Compiler/Element/BlockElement.php -------------------------------------------------------------------------------- /src/Phug/Compiler/Compiler/Event/CompileEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Compiler/Compiler/Event/CompileEvent.php -------------------------------------------------------------------------------- /src/Phug/Compiler/Compiler/Event/ElementEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Compiler/Compiler/Event/ElementEvent.php -------------------------------------------------------------------------------- /src/Phug/Compiler/Compiler/Event/NodeEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Compiler/Compiler/Event/NodeEvent.php -------------------------------------------------------------------------------- /src/Phug/Compiler/Compiler/Event/OutputEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Compiler/Compiler/Event/OutputEvent.php -------------------------------------------------------------------------------- /src/Phug/Compiler/Compiler/Layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Compiler/Compiler/Layout.php -------------------------------------------------------------------------------- /src/Phug/Compiler/Compiler/Locator/FileLocator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Compiler/Compiler/Locator/FileLocator.php -------------------------------------------------------------------------------- /src/Phug/Compiler/Compiler/LocatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Compiler/Compiler/LocatorInterface.php -------------------------------------------------------------------------------- /src/Phug/Compiler/Compiler/NodeCompiler/AbstractStatementNodeCompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Compiler/Compiler/NodeCompiler/AbstractStatementNodeCompiler.php -------------------------------------------------------------------------------- /src/Phug/Compiler/Compiler/NodeCompiler/AssignmentListNodeCompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Compiler/Compiler/NodeCompiler/AssignmentListNodeCompiler.php -------------------------------------------------------------------------------- /src/Phug/Compiler/Compiler/NodeCompiler/AssignmentNodeCompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Compiler/Compiler/NodeCompiler/AssignmentNodeCompiler.php -------------------------------------------------------------------------------- /src/Phug/Compiler/Compiler/NodeCompiler/AttributeListNodeCompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Compiler/Compiler/NodeCompiler/AttributeListNodeCompiler.php -------------------------------------------------------------------------------- /src/Phug/Compiler/Compiler/NodeCompiler/AttributeNodeCompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Compiler/Compiler/NodeCompiler/AttributeNodeCompiler.php -------------------------------------------------------------------------------- /src/Phug/Compiler/Compiler/NodeCompiler/BlockNodeCompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Compiler/Compiler/NodeCompiler/BlockNodeCompiler.php -------------------------------------------------------------------------------- /src/Phug/Compiler/Compiler/NodeCompiler/CaseNodeCompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Compiler/Compiler/NodeCompiler/CaseNodeCompiler.php -------------------------------------------------------------------------------- /src/Phug/Compiler/Compiler/NodeCompiler/CodeNodeCompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Compiler/Compiler/NodeCompiler/CodeNodeCompiler.php -------------------------------------------------------------------------------- /src/Phug/Compiler/Compiler/NodeCompiler/CommentNodeCompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Compiler/Compiler/NodeCompiler/CommentNodeCompiler.php -------------------------------------------------------------------------------- /src/Phug/Compiler/Compiler/NodeCompiler/ConditionalNodeCompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Compiler/Compiler/NodeCompiler/ConditionalNodeCompiler.php -------------------------------------------------------------------------------- /src/Phug/Compiler/Compiler/NodeCompiler/DoNodeCompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Compiler/Compiler/NodeCompiler/DoNodeCompiler.php -------------------------------------------------------------------------------- /src/Phug/Compiler/Compiler/NodeCompiler/DoctypeNodeCompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Compiler/Compiler/NodeCompiler/DoctypeNodeCompiler.php -------------------------------------------------------------------------------- /src/Phug/Compiler/Compiler/NodeCompiler/DocumentNodeCompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Compiler/Compiler/NodeCompiler/DocumentNodeCompiler.php -------------------------------------------------------------------------------- /src/Phug/Compiler/Compiler/NodeCompiler/EachNodeCompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Compiler/Compiler/NodeCompiler/EachNodeCompiler.php -------------------------------------------------------------------------------- /src/Phug/Compiler/Compiler/NodeCompiler/ElementNodeCompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Compiler/Compiler/NodeCompiler/ElementNodeCompiler.php -------------------------------------------------------------------------------- /src/Phug/Compiler/Compiler/NodeCompiler/ExpressionNodeCompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Compiler/Compiler/NodeCompiler/ExpressionNodeCompiler.php -------------------------------------------------------------------------------- /src/Phug/Compiler/Compiler/NodeCompiler/FilterNodeCompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Compiler/Compiler/NodeCompiler/FilterNodeCompiler.php -------------------------------------------------------------------------------- /src/Phug/Compiler/Compiler/NodeCompiler/ForNodeCompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Compiler/Compiler/NodeCompiler/ForNodeCompiler.php -------------------------------------------------------------------------------- /src/Phug/Compiler/Compiler/NodeCompiler/ImportNodeCompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Compiler/Compiler/NodeCompiler/ImportNodeCompiler.php -------------------------------------------------------------------------------- /src/Phug/Compiler/Compiler/NodeCompiler/KeywordNodeCompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Compiler/Compiler/NodeCompiler/KeywordNodeCompiler.php -------------------------------------------------------------------------------- /src/Phug/Compiler/Compiler/NodeCompiler/MixinCallNodeCompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Compiler/Compiler/NodeCompiler/MixinCallNodeCompiler.php -------------------------------------------------------------------------------- /src/Phug/Compiler/Compiler/NodeCompiler/MixinNodeCompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Compiler/Compiler/NodeCompiler/MixinNodeCompiler.php -------------------------------------------------------------------------------- /src/Phug/Compiler/Compiler/NodeCompiler/TextNodeCompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Compiler/Compiler/NodeCompiler/TextNodeCompiler.php -------------------------------------------------------------------------------- /src/Phug/Compiler/Compiler/NodeCompiler/VariableNodeCompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Compiler/Compiler/NodeCompiler/VariableNodeCompiler.php -------------------------------------------------------------------------------- /src/Phug/Compiler/Compiler/NodeCompiler/WhenNodeCompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Compiler/Compiler/NodeCompiler/WhenNodeCompiler.php -------------------------------------------------------------------------------- /src/Phug/Compiler/Compiler/NodeCompiler/WhileNodeCompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Compiler/Compiler/NodeCompiler/WhileNodeCompiler.php -------------------------------------------------------------------------------- /src/Phug/Compiler/Compiler/NodeCompiler/YieldNodeCompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Compiler/Compiler/NodeCompiler/YieldNodeCompiler.php -------------------------------------------------------------------------------- /src/Phug/Compiler/Compiler/NodeCompilerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Compiler/Compiler/NodeCompilerInterface.php -------------------------------------------------------------------------------- /src/Phug/Compiler/Compiler/NormalizerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Compiler/Compiler/NormalizerInterface.php -------------------------------------------------------------------------------- /src/Phug/Compiler/Compiler/Util/YieldHandlerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Compiler/Compiler/Util/YieldHandlerTrait.php -------------------------------------------------------------------------------- /src/Phug/Compiler/Compiler/WithUpperLocatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Compiler/Compiler/WithUpperLocatorInterface.php -------------------------------------------------------------------------------- /src/Phug/Compiler/CompilerEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Compiler/CompilerEvent.php -------------------------------------------------------------------------------- /src/Phug/Compiler/CompilerException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Compiler/CompilerException.php -------------------------------------------------------------------------------- /src/Phug/Compiler/CompilerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Compiler/CompilerInterface.php -------------------------------------------------------------------------------- /src/Phug/Compiler/CompilerModuleInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Compiler/CompilerModuleInterface.php -------------------------------------------------------------------------------- /src/Phug/Compiler/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Compiler/composer.json -------------------------------------------------------------------------------- /src/Phug/Compiler/phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Compiler/phpcs.xml -------------------------------------------------------------------------------- /src/Phug/Compiler/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Compiler/phpunit.xml -------------------------------------------------------------------------------- /src/Phug/DependencyInjection/DependencyException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/DependencyInjection/DependencyException.php -------------------------------------------------------------------------------- /src/Phug/DependencyInjection/DependencyInjection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/DependencyInjection/DependencyInjection.php -------------------------------------------------------------------------------- /src/Phug/DependencyInjection/DependencyInjection/Dependency.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/DependencyInjection/DependencyInjection/Dependency.php -------------------------------------------------------------------------------- /src/Phug/DependencyInjection/DependencyInjection/FunctionWrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/DependencyInjection/DependencyInjection/FunctionWrapper.php -------------------------------------------------------------------------------- /src/Phug/DependencyInjection/DependencyInjection/Requirement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/DependencyInjection/DependencyInjection/Requirement.php -------------------------------------------------------------------------------- /src/Phug/DependencyInjection/DependencyInjectionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/DependencyInjection/DependencyInjectionInterface.php -------------------------------------------------------------------------------- /src/Phug/DependencyInjection/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/DependencyInjection/composer.json -------------------------------------------------------------------------------- /src/Phug/DependencyInjection/phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/DependencyInjection/phpcs.xml -------------------------------------------------------------------------------- /src/Phug/DependencyInjection/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/DependencyInjection/phpunit.xml -------------------------------------------------------------------------------- /src/Phug/Event/.styleci.yml: -------------------------------------------------------------------------------- 1 | disabled: 2 | - phpdoc_var_without_name 3 | -------------------------------------------------------------------------------- /src/Phug/Event/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Event/Event.php -------------------------------------------------------------------------------- /src/Phug/Event/Event/ListenerQueue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Event/Event/ListenerQueue.php -------------------------------------------------------------------------------- /src/Phug/Event/EventInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Event/EventInterface.php -------------------------------------------------------------------------------- /src/Phug/Event/EventManagerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Event/EventManagerInterface.php -------------------------------------------------------------------------------- /src/Phug/Event/EventManagerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Event/EventManagerTrait.php -------------------------------------------------------------------------------- /src/Phug/Event/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Event/composer.json -------------------------------------------------------------------------------- /src/Phug/Event/phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Event/phpcs.xml -------------------------------------------------------------------------------- /src/Phug/Event/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Event/phpunit.xml -------------------------------------------------------------------------------- /src/Phug/Formatter/AbstractFormatterModule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Formatter/AbstractFormatterModule.php -------------------------------------------------------------------------------- /src/Phug/Formatter/Formatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Formatter/Formatter.php -------------------------------------------------------------------------------- /src/Phug/Formatter/Formatter/AbstractElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Formatter/Formatter/AbstractElement.php -------------------------------------------------------------------------------- /src/Phug/Formatter/Formatter/AbstractFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Formatter/Formatter/AbstractFormat.php -------------------------------------------------------------------------------- /src/Phug/Formatter/Formatter/AssignmentContainerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Formatter/Formatter/AssignmentContainerInterface.php -------------------------------------------------------------------------------- /src/Phug/Formatter/Formatter/Element/AbstractAssignmentContainerElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Formatter/Formatter/Element/AbstractAssignmentContainerElement.php -------------------------------------------------------------------------------- /src/Phug/Formatter/Formatter/Element/AbstractMarkupElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Formatter/Formatter/Element/AbstractMarkupElement.php -------------------------------------------------------------------------------- /src/Phug/Formatter/Formatter/Element/AbstractValueElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Formatter/Formatter/Element/AbstractValueElement.php -------------------------------------------------------------------------------- /src/Phug/Formatter/Formatter/Element/AnonymousBlockElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Formatter/Formatter/Element/AnonymousBlockElement.php -------------------------------------------------------------------------------- /src/Phug/Formatter/Formatter/Element/AssignmentElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Formatter/Formatter/Element/AssignmentElement.php -------------------------------------------------------------------------------- /src/Phug/Formatter/Formatter/Element/AttributeElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Formatter/Formatter/Element/AttributeElement.php -------------------------------------------------------------------------------- /src/Phug/Formatter/Formatter/Element/CodeElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Formatter/Formatter/Element/CodeElement.php -------------------------------------------------------------------------------- /src/Phug/Formatter/Formatter/Element/CommentElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Formatter/Formatter/Element/CommentElement.php -------------------------------------------------------------------------------- /src/Phug/Formatter/Formatter/Element/DoctypeElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Formatter/Formatter/Element/DoctypeElement.php -------------------------------------------------------------------------------- /src/Phug/Formatter/Formatter/Element/DocumentElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Formatter/Formatter/Element/DocumentElement.php -------------------------------------------------------------------------------- /src/Phug/Formatter/Formatter/Element/ExpressionElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Formatter/Formatter/Element/ExpressionElement.php -------------------------------------------------------------------------------- /src/Phug/Formatter/Formatter/Element/KeywordElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Formatter/Formatter/Element/KeywordElement.php -------------------------------------------------------------------------------- /src/Phug/Formatter/Formatter/Element/MarkupElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Formatter/Formatter/Element/MarkupElement.php -------------------------------------------------------------------------------- /src/Phug/Formatter/Formatter/Element/MixinCallElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Formatter/Formatter/Element/MixinCallElement.php -------------------------------------------------------------------------------- /src/Phug/Formatter/Formatter/Element/MixinElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Formatter/Formatter/Element/MixinElement.php -------------------------------------------------------------------------------- /src/Phug/Formatter/Formatter/Element/TextElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Formatter/Formatter/Element/TextElement.php -------------------------------------------------------------------------------- /src/Phug/Formatter/Formatter/Element/VariableElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Formatter/Formatter/Element/VariableElement.php -------------------------------------------------------------------------------- /src/Phug/Formatter/Formatter/ElementInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Formatter/Formatter/ElementInterface.php -------------------------------------------------------------------------------- /src/Phug/Formatter/Formatter/Event/DependencyStorageEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Formatter/Formatter/Event/DependencyStorageEvent.php -------------------------------------------------------------------------------- /src/Phug/Formatter/Formatter/Event/FormatEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Formatter/Formatter/Event/FormatEvent.php -------------------------------------------------------------------------------- /src/Phug/Formatter/Formatter/Event/NewFormatEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Formatter/Formatter/Event/NewFormatEvent.php -------------------------------------------------------------------------------- /src/Phug/Formatter/Formatter/Event/StringifyEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Formatter/Formatter/Event/StringifyEvent.php -------------------------------------------------------------------------------- /src/Phug/Formatter/Formatter/Format/BasicFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Formatter/Formatter/Format/BasicFormat.php -------------------------------------------------------------------------------- /src/Phug/Formatter/Formatter/Format/FramesetFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Formatter/Formatter/Format/FramesetFormat.php -------------------------------------------------------------------------------- /src/Phug/Formatter/Formatter/Format/HtmlFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Formatter/Formatter/Format/HtmlFormat.php -------------------------------------------------------------------------------- /src/Phug/Formatter/Formatter/Format/MobileFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Formatter/Formatter/Format/MobileFormat.php -------------------------------------------------------------------------------- /src/Phug/Formatter/Formatter/Format/OneDotOneFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Formatter/Formatter/Format/OneDotOneFormat.php -------------------------------------------------------------------------------- /src/Phug/Formatter/Formatter/Format/PlistFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Formatter/Formatter/Format/PlistFormat.php -------------------------------------------------------------------------------- /src/Phug/Formatter/Formatter/Format/StrictFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Formatter/Formatter/Format/StrictFormat.php -------------------------------------------------------------------------------- /src/Phug/Formatter/Formatter/Format/TransitionalFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Formatter/Formatter/Format/TransitionalFormat.php -------------------------------------------------------------------------------- /src/Phug/Formatter/Formatter/Format/XhtmlFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Formatter/Formatter/Format/XhtmlFormat.php -------------------------------------------------------------------------------- /src/Phug/Formatter/Formatter/Format/XmlFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Formatter/Formatter/Format/XmlFormat.php -------------------------------------------------------------------------------- /src/Phug/Formatter/Formatter/FormatInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Formatter/Formatter/FormatInterface.php -------------------------------------------------------------------------------- /src/Phug/Formatter/Formatter/MarkupInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Formatter/Formatter/MarkupInterface.php -------------------------------------------------------------------------------- /src/Phug/Formatter/Formatter/Partial/AssignmentHelpersTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Formatter/Formatter/Partial/AssignmentHelpersTrait.php -------------------------------------------------------------------------------- /src/Phug/Formatter/Formatter/Partial/HandleVariable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Formatter/Formatter/Partial/HandleVariable.php -------------------------------------------------------------------------------- /src/Phug/Formatter/Formatter/Partial/HelperTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Formatter/Formatter/Partial/HelperTrait.php -------------------------------------------------------------------------------- /src/Phug/Formatter/Formatter/Partial/MagicAccessorTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Formatter/Formatter/Partial/MagicAccessorTrait.php -------------------------------------------------------------------------------- /src/Phug/Formatter/Formatter/Partial/PatternTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Formatter/Formatter/Partial/PatternTrait.php -------------------------------------------------------------------------------- /src/Phug/Formatter/Formatter/Util/PhpUnwrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Formatter/Formatter/Util/PhpUnwrap.php -------------------------------------------------------------------------------- /src/Phug/Formatter/Formatter/Util/PhpUnwrapString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Formatter/Formatter/Util/PhpUnwrapString.php -------------------------------------------------------------------------------- /src/Phug/Formatter/FormatterEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Formatter/FormatterEvent.php -------------------------------------------------------------------------------- /src/Phug/Formatter/FormatterException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Formatter/FormatterException.php -------------------------------------------------------------------------------- /src/Phug/Formatter/FormatterModuleInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Formatter/FormatterModuleInterface.php -------------------------------------------------------------------------------- /src/Phug/Formatter/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Formatter/composer.json -------------------------------------------------------------------------------- /src/Phug/Formatter/phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Formatter/phpcs.xml -------------------------------------------------------------------------------- /src/Phug/Formatter/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Formatter/phpunit.xml -------------------------------------------------------------------------------- /src/Phug/Invoker/.styleci.yml: -------------------------------------------------------------------------------- 1 | disabled: 2 | - phpdoc_var_without_name 3 | -------------------------------------------------------------------------------- /src/Phug/Invoker/Invoker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Invoker/Invoker.php -------------------------------------------------------------------------------- /src/Phug/Invoker/InvokerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Invoker/InvokerInterface.php -------------------------------------------------------------------------------- /src/Phug/Invoker/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Invoker/composer.json -------------------------------------------------------------------------------- /src/Phug/Invoker/phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Invoker/phpcs.xml -------------------------------------------------------------------------------- /src/Phug/Invoker/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Invoker/phpunit.xml -------------------------------------------------------------------------------- /src/Phug/Lexer/AbstractLexerModule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/AbstractLexerModule.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/AbstractToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/AbstractToken.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Analyzer/LineAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Analyzer/LineAnalyzer.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/EscapeTokenInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/EscapeTokenInterface.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Event/EndLexEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Event/EndLexEvent.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Event/LexEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Event/LexEvent.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Event/TokenEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Event/TokenEvent.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/HandleTokenInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/HandleTokenInterface.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Partial/DumpTokenTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Partial/DumpTokenTrait.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Partial/IndentStyleTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Partial/IndentStyleTrait.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Partial/StateTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Partial/StateTrait.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Scanner/AssignmentScanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Scanner/AssignmentScanner.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Scanner/AttributeScanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Scanner/AttributeScanner.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Scanner/AutoCloseScanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Scanner/AutoCloseScanner.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Scanner/BlockScanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Scanner/BlockScanner.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Scanner/CaseScanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Scanner/CaseScanner.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Scanner/ClassScanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Scanner/ClassScanner.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Scanner/CodeScanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Scanner/CodeScanner.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Scanner/CommentScanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Scanner/CommentScanner.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Scanner/ConditionalScanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Scanner/ConditionalScanner.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Scanner/ControlStatementScanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Scanner/ControlStatementScanner.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Scanner/DoScanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Scanner/DoScanner.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Scanner/DoctypeScanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Scanner/DoctypeScanner.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Scanner/DynamicTagScanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Scanner/DynamicTagScanner.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Scanner/EachScanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Scanner/EachScanner.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Scanner/ElementScanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Scanner/ElementScanner.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Scanner/ExpansionScanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Scanner/ExpansionScanner.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Scanner/ExpressionScanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Scanner/ExpressionScanner.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Scanner/FilterScanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Scanner/FilterScanner.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Scanner/ForScanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Scanner/ForScanner.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Scanner/IdScanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Scanner/IdScanner.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Scanner/ImportScanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Scanner/ImportScanner.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Scanner/IndentationScanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Scanner/IndentationScanner.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Scanner/InterpolationScanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Scanner/InterpolationScanner.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Scanner/KeywordScanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Scanner/KeywordScanner.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Scanner/MarkupScanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Scanner/MarkupScanner.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Scanner/MixinCallScanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Scanner/MixinCallScanner.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Scanner/MixinScanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Scanner/MixinScanner.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Scanner/MultilineScanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Scanner/MultilineScanner.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Scanner/NewLineScanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Scanner/NewLineScanner.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Scanner/Partial/NamespaceAndTernaryTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Scanner/Partial/NamespaceAndTernaryTrait.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Scanner/Partial/TrailingOutdentHandlerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Scanner/Partial/TrailingOutdentHandlerTrait.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Scanner/RawTextScanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Scanner/RawTextScanner.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Scanner/SubScanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Scanner/SubScanner.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Scanner/TagScanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Scanner/TagScanner.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Scanner/TextBlockScanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Scanner/TextBlockScanner.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Scanner/TextLineScanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Scanner/TextLineScanner.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Scanner/TextScanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Scanner/TextScanner.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Scanner/VariableScanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Scanner/VariableScanner.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Scanner/WhenScanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Scanner/WhenScanner.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Scanner/WhileScanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Scanner/WhileScanner.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Scanner/YieldScanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Scanner/YieldScanner.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/ScannerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/ScannerInterface.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/State.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/State.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Token/AssignmentToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Token/AssignmentToken.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Token/AttributeEndToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Token/AttributeEndToken.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Token/AttributeStartToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Token/AttributeStartToken.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Token/AttributeToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Token/AttributeToken.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Token/AutoCloseToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Token/AutoCloseToken.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Token/BlockToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Token/BlockToken.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Token/CaseToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Token/CaseToken.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Token/ClassToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Token/ClassToken.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Token/CodeToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Token/CodeToken.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Token/CommentToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Token/CommentToken.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Token/ConditionalToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Token/ConditionalToken.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Token/DoToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Token/DoToken.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Token/DoctypeToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Token/DoctypeToken.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Token/EachToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Token/EachToken.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Token/ExpansionToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Token/ExpansionToken.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Token/ExpressionToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Token/ExpressionToken.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Token/FilterToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Token/FilterToken.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Token/ForToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Token/ForToken.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Token/IdToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Token/IdToken.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Token/ImportToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Token/ImportToken.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Token/IndentToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Token/IndentToken.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Token/InterpolationEndToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Token/InterpolationEndToken.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Token/InterpolationStartToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Token/InterpolationStartToken.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Token/KeywordToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Token/KeywordToken.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Token/MixinCallToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Token/MixinCallToken.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Token/MixinToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Token/MixinToken.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Token/NewLineToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Token/NewLineToken.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Token/OutdentToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Token/OutdentToken.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Token/TagInterpolationEndToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Token/TagInterpolationEndToken.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Token/TagInterpolationStartToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Token/TagInterpolationStartToken.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Token/TagToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Token/TagToken.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Token/TextToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Token/TextToken.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Token/VariableToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Token/VariableToken.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Token/WhenToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Token/WhenToken.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Token/WhileToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Token/WhileToken.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/Token/YieldToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/Token/YieldToken.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Lexer/TokenInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Lexer/TokenInterface.php -------------------------------------------------------------------------------- /src/Phug/Lexer/LexerEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/LexerEvent.php -------------------------------------------------------------------------------- /src/Phug/Lexer/LexerException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/LexerException.php -------------------------------------------------------------------------------- /src/Phug/Lexer/LexerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/LexerInterface.php -------------------------------------------------------------------------------- /src/Phug/Lexer/LexerModuleInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/LexerModuleInterface.php -------------------------------------------------------------------------------- /src/Phug/Lexer/Scanners.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/Scanners.php -------------------------------------------------------------------------------- /src/Phug/Lexer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/composer.json -------------------------------------------------------------------------------- /src/Phug/Lexer/phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/phpcs.xml -------------------------------------------------------------------------------- /src/Phug/Lexer/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Lexer/phpunit.xml -------------------------------------------------------------------------------- /src/Phug/Parser/.styleci.yml: -------------------------------------------------------------------------------- 1 | disabled: 2 | - phpdoc_var_without_name 3 | -------------------------------------------------------------------------------- /src/Phug/Parser/AbstractParserModule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/AbstractParserModule.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/Event/NodeEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/Event/NodeEvent.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/Event/ParseEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/Event/ParseEvent.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/Node.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/Node.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/Node/AssignmentListNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/Node/AssignmentListNode.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/Node/AssignmentNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/Node/AssignmentNode.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/Node/AttributeListNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/Node/AttributeListNode.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/Node/AttributeNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/Node/AttributeNode.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/Node/BlockNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/Node/BlockNode.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/Node/CaseNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/Node/CaseNode.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/Node/CodeNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/Node/CodeNode.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/Node/CommentNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/Node/CommentNode.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/Node/ConditionalNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/Node/ConditionalNode.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/Node/DoNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/Node/DoNode.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/Node/DoctypeNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/Node/DoctypeNode.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/Node/DocumentNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/Node/DocumentNode.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/Node/EachNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/Node/EachNode.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/Node/ElementNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/Node/ElementNode.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/Node/ExpressionNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/Node/ExpressionNode.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/Node/FilterNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/Node/FilterNode.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/Node/ForNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/Node/ForNode.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/Node/ImportNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/Node/ImportNode.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/Node/KeywordNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/Node/KeywordNode.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/Node/MixinCallNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/Node/MixinCallNode.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/Node/MixinNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/Node/MixinNode.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/Node/TextNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/Node/TextNode.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/Node/VariableNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/Node/VariableNode.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/Node/WhenNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/Node/WhenNode.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/Node/WhileNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/Node/WhileNode.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/Node/YieldNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/Node/YieldNode.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/NodeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/NodeInterface.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/State.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/State.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/TokenHandler/AbstractTokenHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/TokenHandler/AbstractTokenHandler.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/TokenHandler/AssignmentTokenHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/TokenHandler/AssignmentTokenHandler.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/TokenHandler/AttributeEndTokenHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/TokenHandler/AttributeEndTokenHandler.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/TokenHandler/AttributeStartTokenHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/TokenHandler/AttributeStartTokenHandler.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/TokenHandler/AttributeTokenHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/TokenHandler/AttributeTokenHandler.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/TokenHandler/AutoCloseTokenHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/TokenHandler/AutoCloseTokenHandler.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/TokenHandler/BlockTokenHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/TokenHandler/BlockTokenHandler.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/TokenHandler/CaseTokenHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/TokenHandler/CaseTokenHandler.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/TokenHandler/ClassTokenHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/TokenHandler/ClassTokenHandler.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/TokenHandler/CodeTokenHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/TokenHandler/CodeTokenHandler.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/TokenHandler/CommentTokenHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/TokenHandler/CommentTokenHandler.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/TokenHandler/ConditionalTokenHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/TokenHandler/ConditionalTokenHandler.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/TokenHandler/DoTokenHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/TokenHandler/DoTokenHandler.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/TokenHandler/DoctypeTokenHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/TokenHandler/DoctypeTokenHandler.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/TokenHandler/EachTokenHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/TokenHandler/EachTokenHandler.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/TokenHandler/ExpansionTokenHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/TokenHandler/ExpansionTokenHandler.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/TokenHandler/ExpressionTokenHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/TokenHandler/ExpressionTokenHandler.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/TokenHandler/FilterTokenHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/TokenHandler/FilterTokenHandler.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/TokenHandler/ForTokenHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/TokenHandler/ForTokenHandler.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/TokenHandler/IdTokenHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/TokenHandler/IdTokenHandler.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/TokenHandler/ImportTokenHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/TokenHandler/ImportTokenHandler.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/TokenHandler/IndentTokenHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/TokenHandler/IndentTokenHandler.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/TokenHandler/InterpolationEndTokenHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/TokenHandler/InterpolationEndTokenHandler.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/TokenHandler/InterpolationStartTokenHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/TokenHandler/InterpolationStartTokenHandler.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/TokenHandler/KeywordTokenHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/TokenHandler/KeywordTokenHandler.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/TokenHandler/MixinCallTokenHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/TokenHandler/MixinCallTokenHandler.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/TokenHandler/MixinTokenHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/TokenHandler/MixinTokenHandler.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/TokenHandler/NewLineTokenHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/TokenHandler/NewLineTokenHandler.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/TokenHandler/OutdentTokenHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/TokenHandler/OutdentTokenHandler.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/TokenHandler/Partial/StaticAttributeTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/TokenHandler/Partial/StaticAttributeTrait.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/TokenHandler/TagInterpolationEndTokenHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/TokenHandler/TagInterpolationEndTokenHandler.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/TokenHandler/TagInterpolationStartTokenHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/TokenHandler/TagInterpolationStartTokenHandler.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/TokenHandler/TagTokenHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/TokenHandler/TagTokenHandler.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/TokenHandler/TextTokenHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/TokenHandler/TextTokenHandler.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/TokenHandler/VariableTokenHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/TokenHandler/VariableTokenHandler.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/TokenHandler/WhenTokenHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/TokenHandler/WhenTokenHandler.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/TokenHandler/WhileTokenHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/TokenHandler/WhileTokenHandler.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/TokenHandler/YieldTokenHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/TokenHandler/YieldTokenHandler.php -------------------------------------------------------------------------------- /src/Phug/Parser/Parser/TokenHandlerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/Parser/TokenHandlerInterface.php -------------------------------------------------------------------------------- /src/Phug/Parser/ParserEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/ParserEvent.php -------------------------------------------------------------------------------- /src/Phug/Parser/ParserException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/ParserException.php -------------------------------------------------------------------------------- /src/Phug/Parser/ParserModuleInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/ParserModuleInterface.php -------------------------------------------------------------------------------- /src/Phug/Parser/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/composer.json -------------------------------------------------------------------------------- /src/Phug/Parser/phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/phpcs.xml -------------------------------------------------------------------------------- /src/Phug/Parser/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Parser/phpunit.xml -------------------------------------------------------------------------------- /src/Phug/Phug/Phug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Phug/Phug.php -------------------------------------------------------------------------------- /src/Phug/Phug/Phug/AbstractExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Phug/Phug/AbstractExtension.php -------------------------------------------------------------------------------- /src/Phug/Phug/Phug/AbstractPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Phug/Phug/AbstractPlugin.php -------------------------------------------------------------------------------- /src/Phug/Phug/Phug/Cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Phug/Phug/Cli.php -------------------------------------------------------------------------------- /src/Phug/Phug/Phug/ExtensionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Phug/Phug/ExtensionInterface.php -------------------------------------------------------------------------------- /src/Phug/Phug/Phug/Optimizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Phug/Phug/Optimizer.php -------------------------------------------------------------------------------- /src/Phug/Phug/Phug/OptionsBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Phug/Phug/OptionsBundle.php -------------------------------------------------------------------------------- /src/Phug/Phug/Phug/Partial/CallbacksTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Phug/Phug/Partial/CallbacksTrait.php -------------------------------------------------------------------------------- /src/Phug/Phug/Phug/Partial/ExtensionsTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Phug/Phug/Partial/ExtensionsTrait.php -------------------------------------------------------------------------------- /src/Phug/Phug/Phug/Partial/FacadeOptionsTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Phug/Phug/Partial/FacadeOptionsTrait.php -------------------------------------------------------------------------------- /src/Phug/Phug/Phug/Partial/PluginEnablerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Phug/Phug/Partial/PluginEnablerTrait.php -------------------------------------------------------------------------------- /src/Phug/Phug/Phug/Partial/PluginEventsTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Phug/Phug/Partial/PluginEventsTrait.php -------------------------------------------------------------------------------- /src/Phug/Phug/Phug/Partial/TokenGeneratorTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Phug/Phug/Partial/TokenGeneratorTrait.php -------------------------------------------------------------------------------- /src/Phug/Phug/Phug/Phug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Phug/Phug/Phug.php -------------------------------------------------------------------------------- /src/Phug/Phug/Phug/PhugException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Phug/Phug/PhugException.php -------------------------------------------------------------------------------- /src/Phug/Phug/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Phug/composer.json -------------------------------------------------------------------------------- /src/Phug/Phug/phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Phug/phpcs.xml -------------------------------------------------------------------------------- /src/Phug/Phug/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Phug/phpunit.xml -------------------------------------------------------------------------------- /src/Phug/Reader/.styleci.yml: -------------------------------------------------------------------------------- 1 | disabled: 2 | - phpdoc_var_without_name 3 | -------------------------------------------------------------------------------- /src/Phug/Reader/Reader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Reader/Reader.php -------------------------------------------------------------------------------- /src/Phug/Reader/ReaderException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Reader/ReaderException.php -------------------------------------------------------------------------------- /src/Phug/Reader/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Reader/composer.json -------------------------------------------------------------------------------- /src/Phug/Reader/phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Reader/phpcs.xml -------------------------------------------------------------------------------- /src/Phug/Reader/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Reader/phpunit.xml -------------------------------------------------------------------------------- /src/Phug/Renderer/AbstractRendererModule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Renderer/AbstractRendererModule.php -------------------------------------------------------------------------------- /src/Phug/Renderer/Renderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Renderer/Renderer.php -------------------------------------------------------------------------------- /src/Phug/Renderer/Renderer/AbstractAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Renderer/Renderer/AbstractAdapter.php -------------------------------------------------------------------------------- /src/Phug/Renderer/Renderer/Adapter/EvalAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Renderer/Renderer/Adapter/EvalAdapter.php -------------------------------------------------------------------------------- /src/Phug/Renderer/Renderer/Adapter/FileAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Renderer/Renderer/Adapter/FileAdapter.php -------------------------------------------------------------------------------- /src/Phug/Renderer/Renderer/Adapter/Stream/Template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Renderer/Renderer/Adapter/Stream/Template.php -------------------------------------------------------------------------------- /src/Phug/Renderer/Renderer/Adapter/StreamAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Renderer/Renderer/Adapter/StreamAdapter.php -------------------------------------------------------------------------------- /src/Phug/Renderer/Renderer/AdapterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Renderer/Renderer/AdapterInterface.php -------------------------------------------------------------------------------- /src/Phug/Renderer/Renderer/CacheInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Renderer/Renderer/CacheInterface.php -------------------------------------------------------------------------------- /src/Phug/Renderer/Renderer/Event/HtmlEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Renderer/Renderer/Event/HtmlEvent.php -------------------------------------------------------------------------------- /src/Phug/Renderer/Renderer/Event/RenderEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Renderer/Renderer/Event/RenderEvent.php -------------------------------------------------------------------------------- /src/Phug/Renderer/Renderer/Partial/AdapterTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Renderer/Renderer/Partial/AdapterTrait.php -------------------------------------------------------------------------------- /src/Phug/Renderer/Renderer/Partial/CacheTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Renderer/Renderer/Partial/CacheTrait.php -------------------------------------------------------------------------------- /src/Phug/Renderer/Renderer/Partial/Debug/DebuggerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Renderer/Renderer/Partial/Debug/DebuggerTrait.php -------------------------------------------------------------------------------- /src/Phug/Renderer/Renderer/Partial/Debug/resources/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Renderer/Renderer/Partial/Debug/resources/index.pug -------------------------------------------------------------------------------- /src/Phug/Renderer/Renderer/Partial/Debug/resources/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Renderer/Renderer/Partial/Debug/resources/prism.css -------------------------------------------------------------------------------- /src/Phug/Renderer/Renderer/Partial/Debug/resources/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Renderer/Renderer/Partial/Debug/resources/prism.js -------------------------------------------------------------------------------- /src/Phug/Renderer/Renderer/Partial/FileAdapterCacheToolsTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Renderer/Renderer/Partial/FileAdapterCacheToolsTrait.php -------------------------------------------------------------------------------- /src/Phug/Renderer/Renderer/Partial/FileSystemTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Renderer/Renderer/Partial/FileSystemTrait.php -------------------------------------------------------------------------------- /src/Phug/Renderer/Renderer/Partial/RegistryTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Renderer/Renderer/Partial/RegistryTrait.php -------------------------------------------------------------------------------- /src/Phug/Renderer/Renderer/Partial/RendererOptionsTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Renderer/Renderer/Partial/RendererOptionsTrait.php -------------------------------------------------------------------------------- /src/Phug/Renderer/Renderer/Partial/RenderingFileTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Renderer/Renderer/Partial/RenderingFileTrait.php -------------------------------------------------------------------------------- /src/Phug/Renderer/Renderer/Partial/SharedVariablesTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Renderer/Renderer/Partial/SharedVariablesTrait.php -------------------------------------------------------------------------------- /src/Phug/Renderer/Renderer/Profiler/Dump.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Renderer/Renderer/Profiler/Dump.php -------------------------------------------------------------------------------- /src/Phug/Renderer/Renderer/Profiler/EventList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Renderer/Renderer/Profiler/EventList.php -------------------------------------------------------------------------------- /src/Phug/Renderer/Renderer/Profiler/LinkDump.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Renderer/Renderer/Profiler/LinkDump.php -------------------------------------------------------------------------------- /src/Phug/Renderer/Renderer/Profiler/LinkedProcesses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Renderer/Renderer/Profiler/LinkedProcesses.php -------------------------------------------------------------------------------- /src/Phug/Renderer/Renderer/Profiler/Profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Renderer/Renderer/Profiler/Profile.php -------------------------------------------------------------------------------- /src/Phug/Renderer/Renderer/Profiler/ProfilerException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Renderer/Renderer/Profiler/ProfilerException.php -------------------------------------------------------------------------------- /src/Phug/Renderer/Renderer/Profiler/ProfilerLocatedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Renderer/Renderer/Profiler/ProfilerLocatedException.php -------------------------------------------------------------------------------- /src/Phug/Renderer/Renderer/Profiler/ProfilerModule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Renderer/Renderer/Profiler/ProfilerModule.php -------------------------------------------------------------------------------- /src/Phug/Renderer/Renderer/Profiler/TokenDump.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Renderer/Renderer/Profiler/TokenDump.php -------------------------------------------------------------------------------- /src/Phug/Renderer/Renderer/Profiler/resources/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Renderer/Renderer/Profiler/resources/index.pug -------------------------------------------------------------------------------- /src/Phug/Renderer/Renderer/Profiler/resources/profiler.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Renderer/Renderer/Profiler/resources/profiler.css -------------------------------------------------------------------------------- /src/Phug/Renderer/Renderer/Profiler/resources/profiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Renderer/Renderer/Profiler/resources/profiler.js -------------------------------------------------------------------------------- /src/Phug/Renderer/Renderer/Task/TasksGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Renderer/Renderer/Task/TasksGroup.php -------------------------------------------------------------------------------- /src/Phug/Renderer/RendererEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Renderer/RendererEvent.php -------------------------------------------------------------------------------- /src/Phug/Renderer/RendererException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Renderer/RendererException.php -------------------------------------------------------------------------------- /src/Phug/Renderer/RendererModuleInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Renderer/RendererModuleInterface.php -------------------------------------------------------------------------------- /src/Phug/Renderer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Renderer/composer.json -------------------------------------------------------------------------------- /src/Phug/Renderer/phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Renderer/phpcs.xml -------------------------------------------------------------------------------- /src/Phug/Renderer/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Renderer/phpunit.xml -------------------------------------------------------------------------------- /src/Phug/Util/.styleci.yml: -------------------------------------------------------------------------------- 1 | disabled: 2 | - phpdoc_var_without_name 3 | -------------------------------------------------------------------------------- /src/Phug/Util/CompatibilityUtil/TestCaseTyped.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/CompatibilityUtil/TestCaseTyped.php -------------------------------------------------------------------------------- /src/Phug/Util/CompatibilityUtil/TestCaseUntyped.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/CompatibilityUtil/TestCaseUntyped.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/AbstractModule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/AbstractModule.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/AssociativeStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/AssociativeStorage.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/AttributesInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/AttributesInterface.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/AttributesOrderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/AttributesOrderInterface.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/AttributesStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/AttributesStorage.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/BooleanSubjectInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/BooleanSubjectInterface.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/Collection.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/DocumentLocationInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/DocumentLocationInterface.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/Exception/LocatedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/Exception/LocatedException.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/Hasher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/Hasher.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/Joiner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/Joiner.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/ModuleContainerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/ModuleContainerInterface.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/ModuleInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/ModuleInterface.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/OptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/OptionInterface.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/OrderableInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/OrderableInterface.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/OrderedValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/OrderedValue.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/Partial/AssignmentTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/Partial/AssignmentTrait.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/Partial/AttributeTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/Partial/AttributeTrait.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/Partial/AttributesOrderTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/Partial/AttributesOrderTrait.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/Partial/BlockTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/Partial/BlockTrait.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/Partial/CheckTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/Partial/CheckTrait.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/Partial/DocumentLocationTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/Partial/DocumentLocationTrait.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/Partial/EscapeTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/Partial/EscapeTrait.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/Partial/FilterTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/Partial/FilterTrait.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/Partial/HashPrintTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/Partial/HashPrintTrait.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/Partial/LevelGetTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/Partial/LevelGetTrait.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/Partial/LevelTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/Partial/LevelTrait.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/Partial/LineGetTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/Partial/LineGetTrait.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/Partial/MacroableTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/Partial/MacroableTrait.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/Partial/ModeTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/Partial/ModeTrait.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/Partial/ModuleContainerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/Partial/ModuleContainerTrait.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/Partial/NameTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/Partial/NameTrait.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/Partial/OffsetGetTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/Partial/OffsetGetTrait.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/Partial/OptionTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/Partial/OptionTrait.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/Partial/OrderTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/Partial/OrderTrait.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/Partial/PairTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/Partial/PairTrait.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/Partial/PathGetTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/Partial/PathGetTrait.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/Partial/PathTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/Partial/PathTrait.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/Partial/RestTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/Partial/RestTrait.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/Partial/ScopeTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/Partial/ScopeTrait.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/Partial/SourceLocationTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/Partial/SourceLocationTrait.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/Partial/StaticMemberTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/Partial/StaticMemberTrait.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/Partial/SubjectTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/Partial/SubjectTrait.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/Partial/TransformableTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/Partial/TransformableTrait.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/Partial/ValueTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/Partial/ValueTrait.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/Partial/VariadicTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/Partial/VariadicTrait.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/Partial/VisibleTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/Partial/VisibleTrait.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/PhpTokenizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/PhpTokenizer.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/SandBox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/SandBox.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/ScopeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/ScopeInterface.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/SourceLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/SourceLocation.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/SourceLocationInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/SourceLocationInterface.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/TestCase.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/TransformableInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/TransformableInterface.php -------------------------------------------------------------------------------- /src/Phug/Util/Util/UnorderedArguments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/Util/UnorderedArguments.php -------------------------------------------------------------------------------- /src/Phug/Util/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/composer.json -------------------------------------------------------------------------------- /src/Phug/Util/phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/phpcs.xml -------------------------------------------------------------------------------- /src/Phug/Util/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phug-php/phug/HEAD/src/Phug/Util/phpunit.xml --------------------------------------------------------------------------------