├── LICENSE ├── README.md ├── composer.json └── src ├── ExpressionParser └── BinaryOperatorExpressionParser.php ├── Operator ├── NotSameAsBinary.php └── SameAsBinary.php ├── PhpSyntaxExtension.php ├── Test ├── ArrayTest.php ├── BooleanTest.php ├── CallableTest.php ├── FalseTest.php ├── FloatTest.php ├── IntegerTest.php ├── ObjectTest.php ├── ScalarTest.php ├── StringTest.php └── TrueTest.php └── TokenParser ├── BreakNode.php ├── BreakOrContinueTokenParser.php ├── BreakTokenParser.php ├── ContinueNode.php ├── ContinueTokenParser.php └── ForeachTokenParser.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squirrelphp/twig-php-syntax/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squirrelphp/twig-php-syntax/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squirrelphp/twig-php-syntax/HEAD/composer.json -------------------------------------------------------------------------------- /src/ExpressionParser/BinaryOperatorExpressionParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squirrelphp/twig-php-syntax/HEAD/src/ExpressionParser/BinaryOperatorExpressionParser.php -------------------------------------------------------------------------------- /src/Operator/NotSameAsBinary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squirrelphp/twig-php-syntax/HEAD/src/Operator/NotSameAsBinary.php -------------------------------------------------------------------------------- /src/Operator/SameAsBinary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squirrelphp/twig-php-syntax/HEAD/src/Operator/SameAsBinary.php -------------------------------------------------------------------------------- /src/PhpSyntaxExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squirrelphp/twig-php-syntax/HEAD/src/PhpSyntaxExtension.php -------------------------------------------------------------------------------- /src/Test/ArrayTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squirrelphp/twig-php-syntax/HEAD/src/Test/ArrayTest.php -------------------------------------------------------------------------------- /src/Test/BooleanTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squirrelphp/twig-php-syntax/HEAD/src/Test/BooleanTest.php -------------------------------------------------------------------------------- /src/Test/CallableTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squirrelphp/twig-php-syntax/HEAD/src/Test/CallableTest.php -------------------------------------------------------------------------------- /src/Test/FalseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squirrelphp/twig-php-syntax/HEAD/src/Test/FalseTest.php -------------------------------------------------------------------------------- /src/Test/FloatTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squirrelphp/twig-php-syntax/HEAD/src/Test/FloatTest.php -------------------------------------------------------------------------------- /src/Test/IntegerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squirrelphp/twig-php-syntax/HEAD/src/Test/IntegerTest.php -------------------------------------------------------------------------------- /src/Test/ObjectTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squirrelphp/twig-php-syntax/HEAD/src/Test/ObjectTest.php -------------------------------------------------------------------------------- /src/Test/ScalarTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squirrelphp/twig-php-syntax/HEAD/src/Test/ScalarTest.php -------------------------------------------------------------------------------- /src/Test/StringTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squirrelphp/twig-php-syntax/HEAD/src/Test/StringTest.php -------------------------------------------------------------------------------- /src/Test/TrueTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squirrelphp/twig-php-syntax/HEAD/src/Test/TrueTest.php -------------------------------------------------------------------------------- /src/TokenParser/BreakNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squirrelphp/twig-php-syntax/HEAD/src/TokenParser/BreakNode.php -------------------------------------------------------------------------------- /src/TokenParser/BreakOrContinueTokenParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squirrelphp/twig-php-syntax/HEAD/src/TokenParser/BreakOrContinueTokenParser.php -------------------------------------------------------------------------------- /src/TokenParser/BreakTokenParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squirrelphp/twig-php-syntax/HEAD/src/TokenParser/BreakTokenParser.php -------------------------------------------------------------------------------- /src/TokenParser/ContinueNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squirrelphp/twig-php-syntax/HEAD/src/TokenParser/ContinueNode.php -------------------------------------------------------------------------------- /src/TokenParser/ContinueTokenParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squirrelphp/twig-php-syntax/HEAD/src/TokenParser/ContinueTokenParser.php -------------------------------------------------------------------------------- /src/TokenParser/ForeachTokenParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/squirrelphp/twig-php-syntax/HEAD/src/TokenParser/ForeachTokenParser.php --------------------------------------------------------------------------------