application.services.php
1 month ago
command.bus.php
2 years ago
container.php
4 weeks ago
domain.event.bus.php
1 year ago
domain.services.php
1 year ago
infrastructure.services.php
4 months ago
infrastructure.user.php
1 year ago
repositories.php
6 months ago
request.php
4 weeks ago
command.bus.php
14 lines
| 1 | <?php |
| 2 | |
| 3 | defined('ABSPATH') or die('No script kiddies please!'); |
| 4 | |
| 5 | use AmeliaBooking\Infrastructure\Licence; |
| 6 | |
| 7 | // @codingStandardsIgnoreStart |
| 8 | $entries['command.bus'] = function ($c) { |
| 9 | return League\Tactician\Setup\QuickStart::create( |
| 10 | Licence\Licence::getCommands($c) |
| 11 | ); |
| 12 | }; |
| 13 | // @codingStandardsIgnoreEnd |
| 14 |