create application Utils

This commit is contained in:
coderkun 2014-01-17 16:22:56 +01:00
commit 1e42680367

32
app/Utils.inc Normal file
View file

@ -0,0 +1,32 @@
<?php
/**
* The Legend of Z
*
* @author Oliver Hanraths <oliver.hanraths@uni-duesseldorf.de>
* @copyright 2014 Heinrich-Heine-Universität Düsseldorf
* @license http://www.gnu.org/licenses/gpl.html
* @link https://bitbucket.org/coderkun/the-legend-of-z
*/
namespace hhu\z;
/**
* Class for implementing utility methods.
*
* @author Oliver Hanraths <oliver.hanraths@uni-duesseldorf.de>
*/
class Utils
{
/**
* Format for printing the date
*
* @var string
*/
const DATEFORMAT = 'm.d.Y';
}
?>