mirror of
https://github.com/slawkens/myaac.git
synced 2025-05-09 15:39:20 +02:00

This fixes some errors on PHP 7.4 and contains even more fixes Also bumped PHP version to 5.5 as Twig requires it.
12 lines
157 B
PHP
12 lines
157 B
PHP
<?php
|
|
|
|
use Twig\Error\RuntimeError;
|
|
|
|
class_exists('Twig\Error\RuntimeError');
|
|
|
|
if (\false) {
|
|
class Twig_Error_Runtime extends RuntimeError
|
|
{
|
|
}
|
|
}
|