Amranidev\ScaffoldInterface\Generators\Generator::__construct PHP Method

__construct() public method

Create new Generator instance.
public __construct ( ) : void
return void
    public function __construct()
    {
        $this->view = app()->make('ViewGenerate');
        $this->model = app()->make('ModelGenerate');
        $this->migration = app()->make('MigrationGenerate');
        $this->controller = app()->make('ControllerGenerate');
        $this->route = app()->make('RouteGenerate');
        $this->paths = app()->make('Path');
    }