resolve( static::accessor() ); } /** * Calls the requested method from the object registered with the * container statically. * * @since 2.0.0 * @access public * @param string $method * @param array $args * @return mixed */ public static function __callStatic( $method, $args ) { $instance = static::instance(); return $instance ? $instance->$method( ...$args ) : null; } }