-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from dicani0/feature/courses
courses layout
- Loading branch information
Showing
43 changed files
with
1,207 additions
and
782 deletions.
There are no files selected for viewing
12 changes: 12 additions & 0 deletions
12
app/Application/Http/Course/Commands/CreateCourseCommand.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?php | ||
|
||
namespace App\Application\Http\Course\Commands; | ||
|
||
use Domains\Course\DTO\CreateCourseDto; | ||
|
||
class CreateCourseCommand | ||
{ | ||
public function __construct(public CreateCourseDto $data) | ||
{ | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
app/Application/Http/Course/Handlers/CreateCourseHandler.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?php | ||
|
||
namespace App\Application\Http\Course\Handlers; | ||
|
||
use App\Application\Http\Course\Commands\CreateCourseCommand; | ||
|
||
class CreateCourseHandler | ||
{ | ||
public function handle(CreateCourseCommand $command) | ||
{ | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.