Uppercase classname.

This commit is contained in:
Malte Hübner 2017-05-26 14:20:28 +02:00
parent 5b05f18735
commit 65a9e9cfc4
2 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@
namespace StaticMapLite;
class staticMapLite
class StaticMapLite
{
protected $maxWidth = 1024;
protected $maxHeight = 1024;

View File

@ -27,7 +27,7 @@
require_once '../vendor/autoload.php';
use StaticMapLite\staticMapLite;
use StaticMapLite\StaticMapLite;
$map = new staticMapLite();
$map = new StaticMapLite();
print $map->showMap();