moved Utility classes into own folder+namespace

This commit is contained in:
Steffen Schröder
2014-05-13 14:32:30 +02:00
parent 2fd501f2e8
commit 00eb49414a
30 changed files with 39 additions and 37 deletions

View File

@ -2,7 +2,7 @@
namespace ManiaControl\Maps;
use ManiaControl\Formatter;
use ManiaControl\Utils\Formatter;
use ManiaControl\ManiaExchange\MXMapInfo;
/**
@ -53,7 +53,7 @@ class Map {
if (!$mpMap) {
return;
}
$this->name = FORMATTER::stripDirtyCodes($mpMap->name);
$this->name = Formatter::stripDirtyCodes($mpMap->name);
$this->rawName = $mpMap->name;
$this->uid = $mpMap->uId;
$this->fileName = $mpMap->fileName;