Skip to content

Commit

Permalink
Merge pull request #64 from ajthinking/remove-unimplemented-methods
Browse files Browse the repository at this point in the history
Remove unimplemented make methods
  • Loading branch information
ajthinking authored May 4, 2022
2 parents 3f9e9e7 + 95ab176 commit a014014
Showing 1 changed file with 0 additions and 24 deletions.
24 changes: 0 additions & 24 deletions src/LaravelFile.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,30 +88,6 @@ public function hidden(...$args)
$handler = new ModelProperties($this);
return $handler->hidden(...$args);
}

public function model($name)
{
$handler = new LaravelMake($this);
$handler->model($name);
}

public function controller($name)
{
$handler = new LaravelMake($this);
$handler->controller($name);
}

public function migration($name)
{
$handler = new LaravelMake($this);
$handler->migration($name);
}

public function factory($name)
{
$handler = new LaravelMake($this);
$handler->factory($name);
}

public function belongsTo($targets)
{
Expand Down

0 comments on commit a014014

Please sign in to comment.