for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
*
* @package sitemaker
* @copyright (c) 2019 Daniel A. (blitze)
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
*/
namespace blitze\sitemaker\services\feeds;
use SimplePie;
class Feed extends SimplePie
{
public function __construct()
parent::__construct();
$this->set_item_class('blitze\sitemaker\services\feeds\Item');
}
* Magic method handler
* @param string $name Property name
* @return mixed
public function __get($name)
return $this->{'get_' . $name}();
* @return bool
public function __isset($name)
return method_exists($this, 'get_' . $name) ? true : false;