Overview

Namespaces

  • Deimos
    • Flow
      • Extension
        • TBlock
        • TFor
        • TForeach
        • TIF
        • TLiteral
        • TPHP
        • TSimple
        • TTry
        • TWhile
      • Traits
  • PHP

Classes

  • Deimos\Flow\Block
  • Deimos\Flow\Configure
  • Deimos\Flow\DefaultConfig
  • Deimos\Flow\DefaultContainer
  • Deimos\Flow\Extension\TBlock\TBlockStart
  • Deimos\Flow\Extension\TBlock\TEndBlock
  • Deimos\Flow\Extension\TFor\TEndFor
  • Deimos\Flow\Extension\TFor\TFor
  • Deimos\Flow\Extension\TForeach\TElseForeach
  • Deimos\Flow\Extension\TForeach\TEndForeach
  • Deimos\Flow\Extension\TForeach\TForeach
  • Deimos\Flow\Extension\TIF\TELSE
  • Deimos\Flow\Extension\TIF\TELSEIF
  • Deimos\Flow\Extension\TIF\TEndIF
  • Deimos\Flow\Extension\TIF\TIF
  • Deimos\Flow\Extension\TLiteral\TLiteral
  • Deimos\Flow\Extension\TPHP\TEndPHP
  • Deimos\Flow\Extension\TPHP\TPHP
  • Deimos\Flow\Extension\TSimple\TAssign
  • Deimos\Flow\Extension\TSimple\TBreak
  • Deimos\Flow\Extension\TSimple\TContinue
  • Deimos\Flow\Extension\TSimple\TExtends
  • Deimos\Flow\Extension\TSimple\TInclude
  • Deimos\Flow\Extension\TSimple\TPartial
  • Deimos\Flow\Extension\TSimple\TVariable
  • Deimos\Flow\Extension\TTry\TCatch
  • Deimos\Flow\Extension\TTry\TEndTry
  • Deimos\Flow\Extension\TTry\TFinally
  • Deimos\Flow\Extension\TTry\TTry
  • Deimos\Flow\Extension\TWhile\TEndWhile
  • Deimos\Flow\Extension\TWhile\TWhile
  • Deimos\Flow\Flow
  • Deimos\Flow\FlowForeach
  • Deimos\Flow\FlowFunction
  • Deimos\Flow\ForeachState
  • Deimos\Flow\Lexer
  • Deimos\Flow\LexerConst
  • Deimos\Flow\Tokenizer

Interfaces

  • Throwable

Traits

  • Deimos\Flow\Traits\Block
  • Deimos\Flow\Traits\FileSystem
  • Deimos\Flow\Traits\Tokenizer

Exceptions

  • BadFunctionCallException
  • Exception
  • InvalidArgumentException
  • LogicException
  • Overview
  • Namespace
  • Class
  • Tree
  • Deprecated
  • Todo
 1: <?php
 2: 
 3: namespace Deimos\Flow;
 4: 
 5: class LexerConst
 6: {
 7:     const T_FOREACH      = 'foreach';       // foreach
 8:     const T_FOREACH_ELSE = 'foreachelse';
 9:     const T_END_FOREACH  = '/foreach';
10:     const T_FOR          = 'for';           // for
11:     const T_END_FOR      = '/for';
12:     const T_WHILE        = 'while';         // while
13:     const T_END_WHILE    = '/while';
14:     const T_CONTINUE     = 'continue';      // operators
15:     const T_BREAK        = 'break';
16:     const T_IF           = 'if';            // if|else|elseif
17:     const T_ELSE         = 'else';
18:     const T_ELSEIF       = 'elseif';
19:     const T_END_IF       = '/if';
20:     const T_TRY          = 'try';           // try|catch|finally
21:     const T_CATCH        = 'catch';
22:     const T_FINALLY      = 'finally';
23:     const T_END_TRY      = '/try';
24:     const T_PHP          = 'php';           // php
25:     const T_END_PHP      = '/php';
26:     const T_ASSIGN       = 'assign';        // assign
27:     const T_VARIABLE     = 'variable';      // variable
28:     const T_INCLUDE      = 'include';       // include
29:     const T_PARTIAL      = 'partial';       // partial
30:     const T_EXTENDS      = 'extends';       // extends
31:     const T_BLOCK_START  = 'block';         // block
32:     const T_BLOCK_END    = '/block';
33: }
API documentation generated by ApiGen