Old versions of PHP don't support constant concatenation

This commit is contained in:
Frederic Guillot 2016-08-18 21:26:50 -04:00
parent 8eac424386
commit a52c670c79
No known key found for this signature in database
GPG Key ID: 92D77191BA7FBC99
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
namespace Template;
const PATH = __DIR__.'/../templates/';
const PATH = 'app/templates/';
// Template\load('template_name', ['bla' => 'value']);
function load()

View File

@ -2,7 +2,7 @@
namespace Translator;
const PATH = __DIR__.'/../locales/';
const PATH = '../locales/';
function translate($identifier)
{