for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Created by PhpStorm.
* User: sergio.rodenas
* Date: 27/6/18
* Time: 15:49
*/
namespace Rodenastyle\StreamParser\Traits;
trait Facade
{
public static function __callStatic($name, $arguments)
return (new static())->{$name}(...$arguments);
}