Completed
Push — master ( d40e31...09d055 )
by Daryl
01:35
created

Map::make_args()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 6
ccs 0
cts 3
cp 0
rs 9.4285
cc 1
eloc 4
nc 1
nop 0
crap 2
1
<?php
2
3
namespace Clubdeuce\WPLib\Components\GoogleMaps;
4
5
/**
6
 * Class Map
7
 * @package Clubdeuce\WPLib\Components\GoogleMaps
8
 *
9
 * @property Map_Model $model
10
 * @property Map_View  $view
11
 * @mixin    Map_Model
12
 * @mixin    Map_View
13
 * @method   void     add_marker( $marker )
14
 * @method   void     add_markers( $markers )
15
 * @method   array    center()
16
 * @method   string   height()
17
 * @method   string   html_id()
18
 * @method   Marker[] markers()
19
 * @method   string   width()
20
 * @method   int      zoom()
21
 * @method   array    make_args()
22
 */
23
class Map extends \WPLib_Item_Base {
24
25
}