2016-08-04 14:55:37 -04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Ion
|
|
|
|
*
|
|
|
|
* Building blocks for web development
|
|
|
|
*
|
2016-08-26 23:10:20 -04:00
|
|
|
* PHP version 5.6
|
|
|
|
*
|
2016-08-04 14:55:37 -04:00
|
|
|
* @package Ion
|
2016-08-26 23:10:20 -04:00
|
|
|
* @author Timothy J. Warren <tim@timshomepage.net>
|
|
|
|
* @copyright 2015 - 2016 Timothy J. Warren
|
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
|
|
|
* @version 1.0.0
|
|
|
|
* @link https://git.timshomepage.net/timw4mail/ion
|
2016-08-04 14:55:37 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Aviat\Ion;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Trait to allow calling a method statically,
|
|
|
|
* as well as with an instance
|
|
|
|
*/
|
|
|
|
trait StaticInstance {
|
|
|
|
/**
|
|
|
|
* Instance for 'faking' static methods
|
|
|
|
*
|
|
|
|
* @var object
|
|
|
|
*/
|
|
|
|
private static $instance = [];
|
|
|
|
|
|
|
|
/**
|
2016-08-26 23:10:20 -04:00
|
|
|
* Call protected methods to allow for
|
2016-08-04 14:55:37 -04:00
|
|
|
* static and instance calling
|
|
|
|
*
|
|
|
|
* @codeCoverageIgnore
|
|
|
|
* @param string $method
|
2016-08-26 17:21:50 -04:00
|
|
|
* @param array $args
|
2016-08-26 23:10:20 -04:00
|
|
|
* @return mixed
|
2016-08-04 14:55:37 -04:00
|
|
|
*/
|
|
|
|
public function __call($method, $args)
|
|
|
|
{
|
|
|
|
if (method_exists($this, $method))
|
|
|
|
{
|
|
|
|
return call_user_func_array([$this, $method], $args);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Call non-static methods statically, so that
|
|
|
|
* an instance of the class isn't required
|
|
|
|
*
|
|
|
|
* @param string $method
|
2016-08-26 17:21:50 -04:00
|
|
|
* @param array $args
|
2016-08-04 14:55:37 -04:00
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public static function __callStatic($method, $args)
|
|
|
|
{
|
|
|
|
$class = get_called_class();
|
|
|
|
if ( ! array_key_exists($class, self::$instance))
|
|
|
|
{
|
|
|
|
self::$instance[$class] = new $class();
|
|
|
|
}
|
|
|
|
|
|
|
|
return call_user_func_array([self::$instance[$class], $method], $args);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// End of StaticInstance.php
|