-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
45 changed files
with
406 additions
and
713 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?php | ||
|
||
namespace Lunarstorm\LaravelDDD\Commands; | ||
|
||
use Illuminate\Foundation\Console\ChannelMakeCommand; | ||
use Lunarstorm\LaravelDDD\Commands\Concerns\ResolvesDomainFromInput; | ||
|
||
class DomainChannelMakeCommand extends ChannelMakeCommand | ||
{ | ||
use ResolvesDomainFromInput; | ||
|
||
protected $name = 'ddd:channel'; | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?php | ||
|
||
namespace Lunarstorm\LaravelDDD\Commands; | ||
|
||
use Illuminate\Console\Command; | ||
|
||
class DomainListCommand extends Command | ||
{ | ||
protected $name = 'ddd:list'; | ||
|
||
protected $description = 'List all current domains'; | ||
} |
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 Lunarstorm\LaravelDDD\Commands; | ||
|
||
use Illuminate\Foundation\Console\ListenerMakeCommand; | ||
use Lunarstorm\LaravelDDD\Commands\Concerns\ResolvesDomainFromInput; | ||
|
||
class DomainListenerMakeCommand extends ListenerMakeCommand | ||
{ | ||
use ResolvesDomainFromInput; | ||
|
||
protected $name = 'ddd:listener'; | ||
} |
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 Lunarstorm\LaravelDDD\Commands; | ||
|
||
use Illuminate\Foundation\Console\ObserverMakeCommand; | ||
use Lunarstorm\LaravelDDD\Commands\Concerns\ResolvesDomainFromInput; | ||
|
||
class DomainObserverMakeCommand extends ObserverMakeCommand | ||
{ | ||
use ResolvesDomainFromInput; | ||
|
||
protected $name = 'ddd:observer'; | ||
} |
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 Lunarstorm\LaravelDDD\Commands; | ||
|
||
use Illuminate\Foundation\Console\PolicyMakeCommand; | ||
use Lunarstorm\LaravelDDD\Commands\Concerns\ResolvesDomainFromInput; | ||
|
||
class DomainPolicyMakeCommand extends PolicyMakeCommand | ||
{ | ||
use ResolvesDomainFromInput; | ||
|
||
protected $name = 'ddd:policy'; | ||
} |
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 Lunarstorm\LaravelDDD\Commands; | ||
|
||
use Illuminate\Foundation\Console\ProviderMakeCommand; | ||
use Lunarstorm\LaravelDDD\Commands\Concerns\ResolvesDomainFromInput; | ||
|
||
class DomainProviderMakeCommand extends ProviderMakeCommand | ||
{ | ||
use ResolvesDomainFromInput; | ||
|
||
protected $name = 'ddd:provider'; | ||
} |
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 Lunarstorm\LaravelDDD\Commands; | ||
|
||
use Illuminate\Foundation\Console\ScopeMakeCommand; | ||
use Lunarstorm\LaravelDDD\Commands\Concerns\ResolvesDomainFromInput; | ||
|
||
class DomainScopeMakeCommand extends ScopeMakeCommand | ||
{ | ||
use ResolvesDomainFromInput; | ||
|
||
protected $name = 'ddd:scope'; | ||
} |
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.