We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9daf61 commit cfc576eCopy full SHA for cfc576e
tests/PresentersTest.php
@@ -16,6 +16,12 @@
16
->assertExitCode(0);
17
})->group('Presenter Command');
18
19
+
20
+it('can create new presenter class with the alias command', function () {
21
+ $this->artisan('make:presenter UserPresenter')
22
+ ->assertExitCode(0);
23
+})->group('Presenter Command');
24
25
it('presents user full name', function () {
26
$user = new User([
27
'first_name' => 'John',
0 commit comments