PointsOfInterestLayer
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1
Metric Value
wmc 0
lcom 0
cbo 1
dl 0
loc 13
1
<?php
2
3
class PointsOfInterestLayer extends DataObject
4
{
5
    private static $db = array(
6
        'Name' => 'Varchar',
7
        'ShowGuideMarkers' => 'Boolean',
8
    );
9
10
    private static $many_many = array('PointsOfInterest' => 'PointOfInterest');
11
12
    private static $has_one = array(
0 ignored issues
show
Unused Code introduced by
The property $has_one is not used and could be removed.

This check marks private properties in classes that are never used. Those properties can be removed.

Loading history...
13
        'DefaultIcon' => 'Image',
14
    );
15
}
16