From 65a9e9cfc47a3823951df77961842778d3b8c218 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Malte=20Hu=CC=88bner?= Date: Fri, 26 May 2017 14:20:28 +0200 Subject: [PATCH] Uppercase classname. --- src/{staticMapLite.php => StaticMapLite.php} | 2 +- web/staticmap.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) rename src/{staticMapLite.php => StaticMapLite.php} (99%) diff --git a/src/staticMapLite.php b/src/StaticMapLite.php similarity index 99% rename from src/staticMapLite.php rename to src/StaticMapLite.php index 75f683a..ca21467 100644 --- a/src/staticMapLite.php +++ b/src/StaticMapLite.php @@ -2,7 +2,7 @@ namespace StaticMapLite; -class staticMapLite +class StaticMapLite { protected $maxWidth = 1024; protected $maxHeight = 1024; diff --git a/web/staticmap.php b/web/staticmap.php index 2d8146f..e465d7a 100644 --- a/web/staticmap.php +++ b/web/staticmap.php @@ -27,7 +27,7 @@ require_once '../vendor/autoload.php'; -use StaticMapLite\staticMapLite; +use StaticMapLite\StaticMapLite; -$map = new staticMapLite(); +$map = new StaticMapLite(); print $map->showMap();