Bolt\Storage\EntityManager::__call PHP Method

__call() public method

Magic call method acts as a catchall proxy to the legacy repository
public __call ( string $method, string $args ) : mixed
$method string
$args string
return mixed
    public function __call($method, $args)
    {
        //$this->getLogger()->warning('[DEPRECATED] Accessing ['storage']->$method is no longer supported and will be removed in a future version.');
        return call_user_func_array([$this->legacy(), $method], $args);
    }