Rename main class into Printer.

This commit is contained in:
Malte Hübner 2017-05-26 16:06:21 +02:00
parent 2b460636fe
commit 27da5ba253
2 changed files with 4 additions and 4 deletions

View File

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

View File

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