Skip to content

Commit 33e6db7

Browse files
authored
Update and rename OldPresenterMakeCommand.php to PresenterMakeCommand.php
1 parent 8b8e43f commit 33e6db7

File tree

2 files changed

+16
-69
lines changed

2 files changed

+16
-69
lines changed

src/Console/OldPresenterMakeCommand.php

-69
This file was deleted.

src/Console/PresenterMakeCommand.php

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?php
2+
3+
namespace Coderflex\LaravelPresenter\Console;
4+
5+
use Illuminate\Console\GeneratorCommand;
6+
7+
class PresenterMakeCommand extends MakePresenterCommand
8+
{
9+
public $name = 'presenter:make';
10+
11+
protected function configure()
12+
{
13+
$this->setHidden(true);
14+
}
15+
16+
}

0 commit comments

Comments
 (0)