mirror of
https://github.com/slawkens/myaac.git
synced 2025-10-16 18:53:26 +02:00
*some fixes
* fixed installing samples when for example Rook Sample already exist and other samples not * fixed some mysql error when character you trying to create already exist * fixed signature fonts finding path * removed DEFAULT '' for TEXT field. It didn't worked under some systems like MAC OS X. * moved news adding at installation from schema.sql to finish.php * removed some unused cities field from myaac_spells table * some optimizations
This commit is contained in:
39
system/libs/twig/Autoloader.php
Normal file
39
system/libs/twig/Autoloader.php
Normal file
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
/*
|
||||
* This file is part of Twig.
|
||||
*
|
||||
* (c) 2009 Fabien Potencier
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
/**
|
||||
* Autoloads Twig classes.
|
||||
*
|
||||
* @author Fabien Potencier <fabien@symfony.com>
|
||||
*/
|
||||
class Twig_Autoloader
|
||||
{
|
||||
/**
|
||||
* Registers Twig_Autoloader as an SPL autoloader.
|
||||
*/
|
||||
public static function register()
|
||||
{
|
||||
ini_set('unserialize_callback_func', 'spl_autoload_call');
|
||||
spl_autoload_register(array(new self, 'autoload'));
|
||||
}
|
||||
/**
|
||||
* Handles autoloading of classes.
|
||||
*
|
||||
* @param string $class A class name.
|
||||
*/
|
||||
public static function autoload($class)
|
||||
{
|
||||
if (0 !== strpos($class, 'Twig')) {
|
||||
return;
|
||||
}
|
||||
if (is_file($file = dirname(__FILE__).'/../'.str_replace(array('_', "\0"), array('/', ''), $class).'.php')) {
|
||||
require $file;
|
||||
}
|
||||
}
|
||||
}
|
11
system/libs/twig/Cache/CacheInterface.php
Executable file
11
system/libs/twig/Cache/CacheInterface.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Cache;
|
||||
|
||||
class_exists('Twig_CacheInterface');
|
||||
|
||||
if (\false) {
|
||||
interface CacheInterface extends \Twig_CacheInterface
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Cache/FilesystemCache.php
Executable file
11
system/libs/twig/Cache/FilesystemCache.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Cache;
|
||||
|
||||
class_exists('Twig_Cache_Filesystem');
|
||||
|
||||
if (\false) {
|
||||
class FilesystemCache extends \Twig_Cache_Filesystem
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Cache/NullCache.php
Executable file
11
system/libs/twig/Cache/NullCache.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Cache;
|
||||
|
||||
class_exists('Twig_Cache_Null');
|
||||
|
||||
if (\false) {
|
||||
class NullCache extends \Twig_Cache_Null
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Compiler.php
Executable file
11
system/libs/twig/Compiler.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig;
|
||||
|
||||
class_exists('Twig_Compiler');
|
||||
|
||||
if (\false) {
|
||||
class Compiler extends \Twig_Compiler
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Environment.php
Executable file
11
system/libs/twig/Environment.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig;
|
||||
|
||||
class_exists('Twig_Environment');
|
||||
|
||||
if (\false) {
|
||||
class Environment extends \Twig_Environment
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Error/Error.php
Executable file
11
system/libs/twig/Error/Error.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Error;
|
||||
|
||||
class_exists('Twig_Error');
|
||||
|
||||
if (\false) {
|
||||
class Error extends \Twig_Error
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Error/LoaderError.php
Executable file
11
system/libs/twig/Error/LoaderError.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Error;
|
||||
|
||||
class_exists('Twig_Error_Loader');
|
||||
|
||||
if (\false) {
|
||||
class LoaderError extends \Twig_Error_Loader
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Error/RuntimeError.php
Executable file
11
system/libs/twig/Error/RuntimeError.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Error;
|
||||
|
||||
class_exists('Twig_Error_Runtime');
|
||||
|
||||
if (\false) {
|
||||
class RuntimeError extends \Twig_Error_Runtime
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Error/SyntaxError.php
Executable file
11
system/libs/twig/Error/SyntaxError.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Error;
|
||||
|
||||
class_exists('Twig_Error_Syntax');
|
||||
|
||||
if (\false) {
|
||||
class SyntaxError extends \Twig_Error_Syntax
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/ExpressionParser.php
Executable file
11
system/libs/twig/ExpressionParser.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig;
|
||||
|
||||
class_exists('Twig_ExpressionParser');
|
||||
|
||||
if (\false) {
|
||||
class ExpressionParser extends \Twig_ExpressionParser
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Extension/AbstractExtension.php
Executable file
11
system/libs/twig/Extension/AbstractExtension.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Extension;
|
||||
|
||||
class_exists('Twig_Extension');
|
||||
|
||||
if (\false) {
|
||||
class AbstractExtension extends \Twig_Extension
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Extension/CoreExtension.php
Executable file
11
system/libs/twig/Extension/CoreExtension.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Extension;
|
||||
|
||||
class_exists('Twig_Extension_Core');
|
||||
|
||||
if (\false) {
|
||||
class CoreExtension extends \Twig_Extension_Core
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Extension/DebugExtension.php
Executable file
11
system/libs/twig/Extension/DebugExtension.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Extension;
|
||||
|
||||
class_exists('Twig_Extension_Debug');
|
||||
|
||||
if (\false) {
|
||||
class DebugExtension extends \Twig_Extension_Debug
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Extension/EscaperExtension.php
Executable file
11
system/libs/twig/Extension/EscaperExtension.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Extension;
|
||||
|
||||
class_exists('Twig_Extension_Escaper');
|
||||
|
||||
if (\false) {
|
||||
class EscaperExtension extends \Twig_Extension_Escaper
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Extension/ExtensionInterface.php
Executable file
11
system/libs/twig/Extension/ExtensionInterface.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Extension;
|
||||
|
||||
class_exists('Twig_ExtensionInterface');
|
||||
|
||||
if (\false) {
|
||||
interface ExtensionInterface extends \Twig_ExtensionInterface
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Extension/GlobalsInterface.php
Executable file
11
system/libs/twig/Extension/GlobalsInterface.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Extension;
|
||||
|
||||
class_exists('Twig_Extension_GlobalsInterface');
|
||||
|
||||
if (\false) {
|
||||
interface GlobalsInterface extends \Twig_Extension_ExtensionInterface
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Extension/InitRuntimeInterface.php
Executable file
11
system/libs/twig/Extension/InitRuntimeInterface.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Extension;
|
||||
|
||||
class_exists('Twig_Extension_InitRuntimeInterface');
|
||||
|
||||
if (\false) {
|
||||
interface InitRuntimeInterface extends \Twig_Extension_InitRuntimeInterface
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Extension/OptimizerExtension.php
Executable file
11
system/libs/twig/Extension/OptimizerExtension.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Extension;
|
||||
|
||||
class_exists('Twig_Extension_Optimizer');
|
||||
|
||||
if (\false) {
|
||||
class OptimizerExtension extends \Twig_Extension_Optimizer
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Extension/ProfilerExtension.php
Executable file
11
system/libs/twig/Extension/ProfilerExtension.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Extension;
|
||||
|
||||
class_exists('Twig_Extension_Profiler');
|
||||
|
||||
if (\false) {
|
||||
class ProfilerExtension extends \Twig_Extension_Profiler
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Extension/SandboxExtension.php
Executable file
11
system/libs/twig/Extension/SandboxExtension.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Extension;
|
||||
|
||||
class_exists('Twig_Extension_Sandbox');
|
||||
|
||||
if (\false) {
|
||||
class SandboxExtension extends \Twig_Extension_Sandbox
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Extension/StagingExtension.php
Executable file
11
system/libs/twig/Extension/StagingExtension.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Extension;
|
||||
|
||||
class_exists('Twig_Extension_Staging');
|
||||
|
||||
if (\false) {
|
||||
class StagingExtension extends \Twig_Extension_Staging
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Extension/StringLoaderExtension.php
Executable file
11
system/libs/twig/Extension/StringLoaderExtension.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Extension;
|
||||
|
||||
class_exists('Twig_Extension_StringLoader');
|
||||
|
||||
if (\false) {
|
||||
class StringLoaderExtension extends \Twig_Extension_StringLoader
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/FileExtensionEscapingStrategy.php
Executable file
11
system/libs/twig/FileExtensionEscapingStrategy.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig;
|
||||
|
||||
class_exists('Twig_FileExtensionEscapingStrategy');
|
||||
|
||||
if (\false) {
|
||||
class FileExtensionEscapingStrategy extends \Twig_FileExtensionEscapingStrategy
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Lexer.php
Executable file
11
system/libs/twig/Lexer.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig;
|
||||
|
||||
class_exists('Twig_Lexer');
|
||||
|
||||
if (\false) {
|
||||
class Lexer extends \Twig_Lexer
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Loader/ArrayLoader.php
Executable file
11
system/libs/twig/Loader/ArrayLoader.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Loader;
|
||||
|
||||
class_exists('Twig_Loader_Array');
|
||||
|
||||
if (\false) {
|
||||
class ArrayLoader extends \Twig_Loader_Array
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Loader/ChainLoader.php
Executable file
11
system/libs/twig/Loader/ChainLoader.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Loader;
|
||||
|
||||
class_exists('Twig_Loader_Chain');
|
||||
|
||||
if (\false) {
|
||||
class ChainLoader extends \Twig_Loader_Chain
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Loader/ExistsLoaderInterface.php
Executable file
11
system/libs/twig/Loader/ExistsLoaderInterface.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Loader;
|
||||
|
||||
class_exists('Twig_ExistsLoaderInterface');
|
||||
|
||||
if (\false) {
|
||||
interface ExistsLoaderInterface extends \Twig_ExistsLoaderInterface
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Loader/FilesystemLoader.php
Executable file
11
system/libs/twig/Loader/FilesystemLoader.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Loader;
|
||||
|
||||
class_exists('Twig_Loader_Filesystem');
|
||||
|
||||
if (\false) {
|
||||
class FilesystemLoader extends \Twig_Loader_Filesystem
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Loader/LoaderInterface.php
Executable file
11
system/libs/twig/Loader/LoaderInterface.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Loader;
|
||||
|
||||
class_exists('Twig_LoaderInterface');
|
||||
|
||||
if (\false) {
|
||||
interface LoaderInterface extends \Twig_LoaderInterface
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Loader/SourceContextLoaderInterface.php
Executable file
11
system/libs/twig/Loader/SourceContextLoaderInterface.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Loader;
|
||||
|
||||
class_exists('Twig_SourceContextLoaderInterface');
|
||||
|
||||
if (\false) {
|
||||
interface SourceContextLoaderInterface extends \Twig_SourceContextLoaderInterface
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Markup.php
Executable file
11
system/libs/twig/Markup.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig;
|
||||
|
||||
class_exists('Twig_Markup');
|
||||
|
||||
if (\false) {
|
||||
class Markup extends \Twig_Markup
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/AutoEscapeNode.php
Executable file
11
system/libs/twig/Node/AutoEscapeNode.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node;
|
||||
|
||||
class_exists('Twig_Node_AutoEscape');
|
||||
|
||||
if (\false) {
|
||||
class AutoEscapeNode extends \Twig_Node_AutoEscape
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/BlockNode.php
Executable file
11
system/libs/twig/Node/BlockNode.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node;
|
||||
|
||||
class_exists('Twig_Node_Block');
|
||||
|
||||
if (\false) {
|
||||
class BlockNode extends \Twig_Node_Block
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/BlockReferenceNode.php
Executable file
11
system/libs/twig/Node/BlockReferenceNode.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node;
|
||||
|
||||
class_exists('Twig_Node_BlockReference');
|
||||
|
||||
if (\false) {
|
||||
class BlockReferenceNode extends \Twig_Node_BlockReference
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/BodyNode.php
Executable file
11
system/libs/twig/Node/BodyNode.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node;
|
||||
|
||||
class_exists('Twig_Node_Body');
|
||||
|
||||
if (\false) {
|
||||
class BodyNode extends \Twig_Node_Body
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/CheckSecurityNode.php
Executable file
11
system/libs/twig/Node/CheckSecurityNode.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node;
|
||||
|
||||
class_exists('Twig_Node_CheckSecurity');
|
||||
|
||||
if (\false) {
|
||||
class CheckSecurityNode extends \Twig_Node_CheckSecurity
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/DoNode.php
Executable file
11
system/libs/twig/Node/DoNode.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node;
|
||||
|
||||
class_exists('Twig_Node_Do');
|
||||
|
||||
if (\false) {
|
||||
class DoNode extends \Twig_Node_Do
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/EmbedNode.php
Executable file
11
system/libs/twig/Node/EmbedNode.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node;
|
||||
|
||||
class_exists('Twig_Node_Embed');
|
||||
|
||||
if (\false) {
|
||||
class EmbedNode extends \Twig_Node_Embed
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/AbstractExpression.php
Executable file
11
system/libs/twig/Node/Expression/AbstractExpression.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression;
|
||||
|
||||
class_exists('Twig_Node_Expression');
|
||||
|
||||
if (\false) {
|
||||
class AbstractExpression extends \Twig_Node_Expression
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/ArrayExpression.php
Executable file
11
system/libs/twig/Node/Expression/ArrayExpression.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression;
|
||||
|
||||
class_exists('Twig_Node_Expression_Array');
|
||||
|
||||
if (\false) {
|
||||
class ArrayExpression extends \Twig_Node_Expression_Array
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/AssignNameExpression.php
Executable file
11
system/libs/twig/Node/Expression/AssignNameExpression.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression;
|
||||
|
||||
class_exists('Twig_Node_Expression_AssignName');
|
||||
|
||||
if (\false) {
|
||||
class AssignNameExpression extends \Twig_Node_Expression_AssignName
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/Binary/AbstractBinary.php
Executable file
11
system/libs/twig/Node/Expression/Binary/AbstractBinary.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression\Binary;
|
||||
|
||||
class_exists('Twig_Node_Expression_Binary');
|
||||
|
||||
if (\false) {
|
||||
class AbstractBinary extends \Twig_Node_Expression_Binary
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/Binary/AddBinary.php
Executable file
11
system/libs/twig/Node/Expression/Binary/AddBinary.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression\Binary;
|
||||
|
||||
class_exists('Twig_Node_Expression_Binary_Add');
|
||||
|
||||
if (\false) {
|
||||
class AddBinary extends \Twig_Node_Expression_Binary_Add
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/Binary/AndBinary.php
Executable file
11
system/libs/twig/Node/Expression/Binary/AndBinary.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression\Binary;
|
||||
|
||||
class_exists('Twig_Node_Expression_Binary_And');
|
||||
|
||||
if (\false) {
|
||||
class AndBinary extends \Twig_Node_Expression_Binary_And
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/Binary/BitwiseAndBinary.php
Executable file
11
system/libs/twig/Node/Expression/Binary/BitwiseAndBinary.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression\Binary;
|
||||
|
||||
class_exists('Twig_Node_Expression_Binary_BitwiseAnd');
|
||||
|
||||
if (\false) {
|
||||
class BitwiseAndBinary extends \Twig_Node_Expression_Binary_BitwiseAnd
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/Binary/BitwiseOrBinary.php
Executable file
11
system/libs/twig/Node/Expression/Binary/BitwiseOrBinary.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression\Binary;
|
||||
|
||||
class_exists('Twig_Node_Expression_Binary_BitwiseOr');
|
||||
|
||||
if (\false) {
|
||||
class BitwiseOrBinary extends \Twig_Node_Expression_Binary_BitwiseOr
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/Binary/BitwiseXorBinary.php
Executable file
11
system/libs/twig/Node/Expression/Binary/BitwiseXorBinary.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression\Binary;
|
||||
|
||||
class_exists('Twig_Node_Expression_Binary_BitwiseXor');
|
||||
|
||||
if (\false) {
|
||||
class BitwiseXorBinary extends \Twig_Node_Expression_Binary_BitwiseXor
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/Binary/ConcatBinary.php
Executable file
11
system/libs/twig/Node/Expression/Binary/ConcatBinary.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression\Binary;
|
||||
|
||||
class_exists('Twig_Node_Expression_Binary_Concat');
|
||||
|
||||
if (\false) {
|
||||
class ConcatBinary extends \Twig_Node_Expression_Binary_Concat
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/Binary/DivBinary.php
Executable file
11
system/libs/twig/Node/Expression/Binary/DivBinary.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression\Binary;
|
||||
|
||||
class_exists('Twig_Node_Expression_Binary_Div');
|
||||
|
||||
if (\false) {
|
||||
class DivBinary extends \Twig_Node_Expression_Binary_Div
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/Binary/EndsWithBinary.php
Executable file
11
system/libs/twig/Node/Expression/Binary/EndsWithBinary.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression\Binary;
|
||||
|
||||
class_exists('Twig_Node_Expression_Binary_EndsWith');
|
||||
|
||||
if (\false) {
|
||||
class EndsWithBinary extends \Twig_Node_Expression_Binary_EndsWith
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/Binary/EqualBinary.php
Executable file
11
system/libs/twig/Node/Expression/Binary/EqualBinary.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression\Binary;
|
||||
|
||||
class_exists('Twig_Node_Expression_Binary_Equal');
|
||||
|
||||
if (\false) {
|
||||
class EqualBinary extends \Twig_Node_Expression_Binary_Equal
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/Binary/FloorDivBinary.php
Executable file
11
system/libs/twig/Node/Expression/Binary/FloorDivBinary.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression\Binary;
|
||||
|
||||
class_exists('Twig_Node_Expression_Binary_FloorDiv');
|
||||
|
||||
if (\false) {
|
||||
class FloorDivBinary extends \Twig_Node_Expression_Binary_FloorDiv
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/Binary/GreaterBinary.php
Executable file
11
system/libs/twig/Node/Expression/Binary/GreaterBinary.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression\Binary;
|
||||
|
||||
class_exists('Twig_Node_Expression_Binary_Greater');
|
||||
|
||||
if (\false) {
|
||||
class GreaterBinary extends \Twig_Node_Expression_Binary_Greater
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/Binary/GreaterEqualBinary.php
Executable file
11
system/libs/twig/Node/Expression/Binary/GreaterEqualBinary.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression\Binary;
|
||||
|
||||
class_exists('Twig_Node_Expression_Binary_GreaterEqual');
|
||||
|
||||
if (\false) {
|
||||
class GreaterEqualBinary extends \Twig_Node_Expression_Binary_GreaterEqual
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/Binary/InBinary.php
Executable file
11
system/libs/twig/Node/Expression/Binary/InBinary.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression\Binary;
|
||||
|
||||
class_exists('Twig_Node_Expression_Binary_In');
|
||||
|
||||
if (\false) {
|
||||
class InBinary extends \Twig_Node_Expression_Binary_In
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/Binary/LessBinary.php
Executable file
11
system/libs/twig/Node/Expression/Binary/LessBinary.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression\Binary;
|
||||
|
||||
class_exists('Twig_Node_Expression_Binary_Less');
|
||||
|
||||
if (\false) {
|
||||
class LessBinary extends \Twig_Node_Expression_Binary_Less
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/Binary/LessEqualBinary.php
Executable file
11
system/libs/twig/Node/Expression/Binary/LessEqualBinary.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression\Binary;
|
||||
|
||||
class_exists('Twig_Node_Expression_Binary_LessEqual');
|
||||
|
||||
if (\false) {
|
||||
class LessEqualBinary extends \Twig_Node_Expression_Binary_LessEqual
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/Binary/MatchesBinary.php
Executable file
11
system/libs/twig/Node/Expression/Binary/MatchesBinary.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression\Binary;
|
||||
|
||||
class_exists('Twig_Node_Expression_Binary_Matches');
|
||||
|
||||
if (\false) {
|
||||
class MatchesBinary extends \Twig_Node_Expression_Binary_Matches
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/Binary/ModBinary.php
Executable file
11
system/libs/twig/Node/Expression/Binary/ModBinary.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression\Binary;
|
||||
|
||||
class_exists('Twig_Node_Expression_Binary_Mod');
|
||||
|
||||
if (\false) {
|
||||
class ModBinary extends \Twig_Node_Expression_Binary_Mod
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/Binary/MulBinary.php
Executable file
11
system/libs/twig/Node/Expression/Binary/MulBinary.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression\Binary;
|
||||
|
||||
class_exists('Twig_Node_Expression_Binary_Mul');
|
||||
|
||||
if (\false) {
|
||||
class MulBinary extends \Twig_Node_Expression_Binary_Mul
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/Binary/NotEqualBinary.php
Executable file
11
system/libs/twig/Node/Expression/Binary/NotEqualBinary.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression\Binary;
|
||||
|
||||
class_exists('Twig_Node_Expression_Binary_NotEqual');
|
||||
|
||||
if (\false) {
|
||||
class NotEqualBinary extends \Twig_Node_Expression_Binary_NotEqual
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/Binary/NotInBinary.php
Executable file
11
system/libs/twig/Node/Expression/Binary/NotInBinary.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression\Binary;
|
||||
|
||||
class_exists('Twig_Node_Expression_Binary_NotIn');
|
||||
|
||||
if (\false) {
|
||||
class NotInBinary extends \Twig_Node_Expression_Binary_NotIn
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/Binary/OrBinary.php
Executable file
11
system/libs/twig/Node/Expression/Binary/OrBinary.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression\Binary;
|
||||
|
||||
class_exists('Twig_Node_Expression_Binary_Or');
|
||||
|
||||
if (\false) {
|
||||
class OrBinary extends \Twig_Node_Expression_Binary_Or
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/Binary/PowerBinary.php
Executable file
11
system/libs/twig/Node/Expression/Binary/PowerBinary.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression\Binary;
|
||||
|
||||
class_exists('Twig_Node_Expression_Binary_Power');
|
||||
|
||||
if (\false) {
|
||||
class PowerBinary extends \Twig_Node_Expression_Binary_Power
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/Binary/RangeBinary.php
Executable file
11
system/libs/twig/Node/Expression/Binary/RangeBinary.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression\Binary;
|
||||
|
||||
class_exists('Twig_Node_Expression_Binary_Range');
|
||||
|
||||
if (\false) {
|
||||
class RangeBinary extends \Twig_Node_Expression_Binary_Range
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/Binary/StartsWithBinary.php
Executable file
11
system/libs/twig/Node/Expression/Binary/StartsWithBinary.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression\Binary;
|
||||
|
||||
class_exists('Twig_Node_Expression_Binary_StartsWith');
|
||||
|
||||
if (\false) {
|
||||
class StartsWithBinary extends \Twig_Node_Expression_Binary_StartsWith
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/Binary/SubBinary.php
Executable file
11
system/libs/twig/Node/Expression/Binary/SubBinary.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression\Binary;
|
||||
|
||||
class_exists('Twig_Node_Expression_Binary_Sub');
|
||||
|
||||
if (\false) {
|
||||
class SubBinary extends \Twig_Node_Expression_Binary_Sub
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/BlockReferenceExpression.php
Executable file
11
system/libs/twig/Node/Expression/BlockReferenceExpression.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression;
|
||||
|
||||
class_exists('Twig_Node_Expression_BlockReference');
|
||||
|
||||
if (\false) {
|
||||
class BlockReferenceExpression extends \Twig_Node_Expression_BlockReference
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/CallExpression.php
Executable file
11
system/libs/twig/Node/Expression/CallExpression.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression;
|
||||
|
||||
class_exists('Twig_Node_Expression_Call');
|
||||
|
||||
if (\false) {
|
||||
class CallExpression extends \Twig_Node_Expression_Call
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/ConditionalExpression.php
Executable file
11
system/libs/twig/Node/Expression/ConditionalExpression.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression;
|
||||
|
||||
class_exists('Twig_Node_Expression_Conditional');
|
||||
|
||||
if (\false) {
|
||||
class ConditionalExpression extends \Twig_Node_Expression_Conditional
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/ConstantExpression.php
Executable file
11
system/libs/twig/Node/Expression/ConstantExpression.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression;
|
||||
|
||||
class_exists('Twig_Node_Expression_Constant');
|
||||
|
||||
if (\false) {
|
||||
class ConstantExpression extends \Twig_Node_Expression_Constant
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/Filter/DefaultFilter.php
Executable file
11
system/libs/twig/Node/Expression/Filter/DefaultFilter.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression\Filter;
|
||||
|
||||
class_exists('Twig_Node_Expression_Filter_Default');
|
||||
|
||||
if (\false) {
|
||||
class DefaultFilter extends \Twig_Node_Expression_Filter_Default
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/FilterExpression.php
Executable file
11
system/libs/twig/Node/Expression/FilterExpression.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression;
|
||||
|
||||
class_exists('Twig_Node_Expression_Filter');
|
||||
|
||||
if (\false) {
|
||||
class FilterExpression extends \Twig_Node_Expression_Filter
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/FunctionExpression.php
Executable file
11
system/libs/twig/Node/Expression/FunctionExpression.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression;
|
||||
|
||||
class_exists('Twig_Node_Expression_Function');
|
||||
|
||||
if (\false) {
|
||||
class FunctionExpression extends \Twig_Node_Expression_Function
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/GetAttrExpression.php
Executable file
11
system/libs/twig/Node/Expression/GetAttrExpression.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression;
|
||||
|
||||
class_exists('Twig_Node_Expression_GetAttr');
|
||||
|
||||
if (\false) {
|
||||
class GetAttrExpression extends \Twig_Node_Expression_GetAttr
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/MethodCallExpression.php
Executable file
11
system/libs/twig/Node/Expression/MethodCallExpression.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression;
|
||||
|
||||
class_exists('Twig_Node_Expression_MethodCall');
|
||||
|
||||
if (\false) {
|
||||
class MethodCallExpression extends \Twig_Node_Expression_MethodCall
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/NameExpression.php
Executable file
11
system/libs/twig/Node/Expression/NameExpression.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression;
|
||||
|
||||
class_exists('Twig_Node_Expression_Name');
|
||||
|
||||
if (\false) {
|
||||
class NameExpression extends \Twig_Node_Expression_Name
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/NullCoalesceExpression.php
Executable file
11
system/libs/twig/Node/Expression/NullCoalesceExpression.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression;
|
||||
|
||||
class_exists('Twig_Node_Expression_NullCoalesce');
|
||||
|
||||
if (\false) {
|
||||
class NullCoalesceExpression extends \Twig_Node_Expression_NullCoalesce
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/ParentExpression.php
Executable file
11
system/libs/twig/Node/Expression/ParentExpression.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression;
|
||||
|
||||
class_exists('Twig_Node_Expression_Parent');
|
||||
|
||||
if (\false) {
|
||||
class ParentExpression extends \Twig_Node_Expression_Parent
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/TempNameExpression.php
Executable file
11
system/libs/twig/Node/Expression/TempNameExpression.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression;
|
||||
|
||||
class_exists('Twig_Node_Expression_TempName');
|
||||
|
||||
if (\false) {
|
||||
class TempNameExpression extends \Twig_Node_Expression_TempName
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/Test/ConstantTest.php
Executable file
11
system/libs/twig/Node/Expression/Test/ConstantTest.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression\Test;
|
||||
|
||||
class_exists('Twig_Node_Expression_Test_Constant');
|
||||
|
||||
if (\false) {
|
||||
class ConstantTest extends \Twig_Node_Expression_Test_Constant
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/Test/DefinedTest.php
Executable file
11
system/libs/twig/Node/Expression/Test/DefinedTest.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression\Test;
|
||||
|
||||
class_exists('Twig_Node_Expression_Test_Defined');
|
||||
|
||||
if (\false) {
|
||||
class DefinedTest extends \Twig_Node_Expression_Test_Defined
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/Test/DivisiblebyTest.php
Executable file
11
system/libs/twig/Node/Expression/Test/DivisiblebyTest.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression\Test;
|
||||
|
||||
class_exists('Twig_Node_Expression_Test_Divisibleby');
|
||||
|
||||
if (\false) {
|
||||
class DivisiblebyTest extends \Twig_Node_Expression_Test_Divisibleby
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/Test/EvenTest.php
Executable file
11
system/libs/twig/Node/Expression/Test/EvenTest.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression\Test;
|
||||
|
||||
class_exists('Twig_Node_Expression_Test_Even');
|
||||
|
||||
if (\false) {
|
||||
class EvenTest extends \Twig_Node_Expression_Test_Even
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/Test/NullTest.php
Executable file
11
system/libs/twig/Node/Expression/Test/NullTest.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression\Test;
|
||||
|
||||
class_exists('Twig_Node_Expression_Test_Null');
|
||||
|
||||
if (\false) {
|
||||
class NullTest extends \Twig_Node_Expression_Test_Null
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/Test/OddTest.php
Executable file
11
system/libs/twig/Node/Expression/Test/OddTest.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression\Test;
|
||||
|
||||
class_exists('Twig_Node_Expression_Test_Odd');
|
||||
|
||||
if (\false) {
|
||||
class OddTest extends \Twig_Node_Expression_Test_Odd
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/Test/SameasTest.php
Executable file
11
system/libs/twig/Node/Expression/Test/SameasTest.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression\Test;
|
||||
|
||||
class_exists('Twig_Node_Expression_Test_Sameas');
|
||||
|
||||
if (\false) {
|
||||
class SameasTest extends \Twig_Node_Expression_Test_Sameas
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/TestExpression.php
Executable file
11
system/libs/twig/Node/Expression/TestExpression.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression;
|
||||
|
||||
class_exists('Twig_Node_Expression_Test');
|
||||
|
||||
if (\false) {
|
||||
class TestExpression extends \Twig_Node_Expression_Test
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/Unary/AbstractUnary.php
Executable file
11
system/libs/twig/Node/Expression/Unary/AbstractUnary.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression\Unary;
|
||||
|
||||
class_exists('Twig_Node_Expression_Unary');
|
||||
|
||||
if (\false) {
|
||||
class AbstractUnary extends \Twig_Node_Expression_Unary
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/Unary/NegUnary.php
Executable file
11
system/libs/twig/Node/Expression/Unary/NegUnary.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression\Unary;
|
||||
|
||||
class_exists('Twig_Node_Expression_Unary_Neg');
|
||||
|
||||
if (\false) {
|
||||
class NegUnary extends \Twig_Node_Expression_Unary_Neg
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/Unary/NotUnary.php
Executable file
11
system/libs/twig/Node/Expression/Unary/NotUnary.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression\Unary;
|
||||
|
||||
class_exists('Twig_Node_Expression_Unary_Not');
|
||||
|
||||
if (\false) {
|
||||
class NotUnary extends \Twig_Node_Expression_Unary_Not
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/Expression/Unary/PosUnary.php
Executable file
11
system/libs/twig/Node/Expression/Unary/PosUnary.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node\Expression\Unary;
|
||||
|
||||
class_exists('Twig_Node_Expression_Unary_Pos');
|
||||
|
||||
if (\false) {
|
||||
class PosUnary extends \Twig_Node_Expression_Unary_Pos
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/FlushNode.php
Executable file
11
system/libs/twig/Node/FlushNode.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node;
|
||||
|
||||
class_exists('Twig_Node_Flush');
|
||||
|
||||
if (\false) {
|
||||
class FlushNode extends \Twig_Node_Flush
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/ForLoopNode.php
Executable file
11
system/libs/twig/Node/ForLoopNode.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node;
|
||||
|
||||
class_exists('Twig_Node_ForLoop');
|
||||
|
||||
if (\false) {
|
||||
class ForLoopNode extends \Twig_Node_ForLoop
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/ForNode.php
Executable file
11
system/libs/twig/Node/ForNode.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node;
|
||||
|
||||
class_exists('Twig_Node_For');
|
||||
|
||||
if (\false) {
|
||||
class ForNode extends \Twig_Node_For
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/IfNode.php
Executable file
11
system/libs/twig/Node/IfNode.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node;
|
||||
|
||||
class_exists('Twig_Node_If');
|
||||
|
||||
if (\false) {
|
||||
class IfNode extends \Twig_Node_If
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/ImportNode.php
Executable file
11
system/libs/twig/Node/ImportNode.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node;
|
||||
|
||||
class_exists('Twig_Node_Import');
|
||||
|
||||
if (\false) {
|
||||
class ImportNode extends \Twig_Node_Import
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/IncludeNode.php
Executable file
11
system/libs/twig/Node/IncludeNode.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node;
|
||||
|
||||
class_exists('Twig_Node_Include');
|
||||
|
||||
if (\false) {
|
||||
class IncludeNode extends \Twig_Node_Include
|
||||
{
|
||||
}
|
||||
}
|
11
system/libs/twig/Node/MacroNode.php
Executable file
11
system/libs/twig/Node/MacroNode.php
Executable file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace Twig\Node;
|
||||
|
||||
class_exists('Twig_Node_Macro');
|
||||
|
||||
if (\false) {
|
||||
class MacroNode extends \Twig_Node_Macro
|
||||
{
|
||||
}
|
||||
}
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user