Completed
Push — next ( 1cbaaa...3e1df6 )
by Thomas
16s
created

StaticMap   A

Complexity

Total Complexity 38

Size/Duplication

Total Lines 279
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 0

Importance

Changes 0
Metric Value
dl 0
loc 279
rs 9.36
c 0
b 0
f 0
wmc 38
lcom 1
cbo 0
1
<?php
2
3
4
//error_reporting(E_ALL);
5
//ini_set('display_errors', 'on');
6
7
require __DIR__ . '/vendor/autoload.php';
8
9
use OcLegacy\Map\StaticMap;
10
11
$map = new StaticMap();
12
echo $map->showMap();
13