for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Sco\Admin\View;
use Sco\Admin\Contracts\ViewFactoryInterface;
use Sco\Admin\Traits\AliasBinder;
/**
* @method static Table table()
*/
class ViewFactory implements ViewFactoryInterface
{
use AliasBinder;
public function __construct()
$this->registerAliases([
'table' => Table::class,
]);
}