for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Clubdeuce\WPLib\Components\GoogleMaps;
/**
* Class Map
* @package Clubdeuce\WPLib\Components\GoogleMaps
*
* @property Map_Model $model
* @property Map_View $view
* @mixin Map_Model
* @mixin Map_View
* @method void add_marker()
* @method array center()
* @method array markers()
* @method int zoom()
*/
class Map extends \WPLib_Item_Base {
* @return array
function make_args() {
return array(
'center' => $this->center(),
'zoom' => (int)$this->zoom(),
);
}