switched to namespace first, PSR-0 as a fallback

This commit is contained in:
Fabien Potencier
2019-03-05 08:07:17 +01:00
parent eca762f490
commit 037ee67224
347 changed files with 15640 additions and 15512 deletions
+20 -5
View File
@@ -1,11 +1,26 @@
<?php
/*
* This file is part of Twig.
*
* (c) Fabien Potencier
* (c) Armin Ronacher
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Twig\Node\Expression;
class_exists('Twig_Node_Expression');
use Twig\Node\Node;
if (\false) {
class AbstractExpression extends \Twig_Node_Expression
{
}
/**
* Abstract class for all nodes that represents an expression.
*
* @author Fabien Potencier <fabien@symfony.com>
*/
abstract class AbstractExpression extends Node
{
}
class_alias('Twig\Node\Expression\AbstractExpression', 'Twig_Node_Expression');