Completed
Push — master ( 898e77...f00d09 )
by Daryl
04:31
created

Marker::make_options()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 9
Code Lines 5

Duplication

Lines 9
Ratio 100 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 9
loc 9
rs 9.6666
cc 1
eloc 5
nc 1
nop 1
1
<?php
2
3
namespace Clubdeuce\WPLib\Components\GoogleMaps;
4
5
/**
6
 * Class Marker
7
 * @package Clubdeuce\WPLib\Components\GoogleMaps
8
 *
9
 * @property Marker_Model $model
10
 * @property Marker_View  $view
11
 * @mixin    Marker_Model
12
 * @mixin    Marker_View
13
 * @method   string label()
14
 * @method   float  latitude()
15
 * @method   float  longitude()
16
 * @method   string title
17
 */
18
class Marker extends \WPLib_Item_Base {
19
20
}