removed 'application' folder to have everything in the root directory

This commit is contained in:
Steffen Schröder
2014-09-29 18:20:09 +02:00
parent 1569fd5488
commit 9642433363
284 changed files with 4 additions and 50 deletions

30
core/Utils/ClassUtil.php Normal file
View File

@ -0,0 +1,30 @@
<?php
namespace ManiaControl\Utils;
/**
* Utility Class offering Methods related to Classes
*
* @author ManiaControl Team <mail@maniacontrol.com>
* @copyright 2014 ManiaControl Team
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
*/
abstract class ClassUtil {
/**
* Get the Class Name of the given Object
*
* @param mixed $object
* @return string
*/
public static function getClass($object) {
if (is_object($object)) {
return get_class($object);
}
if (is_string($object)) {
return $object;
}
trigger_error("Invalid class param: '" . print_r($object, true) . "'!");
return (string)$object;
}
}