Files
nibiru-framework.com/core/i/engine.php
2017-06-16 12:21:21 +02:00

16 lines
322 B
PHP

<?php
namespace Nibiru;
/**
* Created by PhpStorm.
* User: skasdorf
* Date: 10.05.17
* Time: 10:46
*/
interface IEngine
{
const T_ENGINE = "ENGINE";
const T_ENGINE_NAME = "name";
const T_ENGINE_TWIG = "Twig";
const T_ENGINE_SMARTY = "Smarty";
const T_ENGINE_DWOO = "Dwoo";
}