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;
class StaticMapLite
class Printer
{
protected $maxWidth = 1024;
protected $maxHeight = 1024;

View File

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