-
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.
- Loading branch information
1 parent
46412de
commit 7d7c011
Showing
4 changed files
with
30 additions
and
16 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?php namespace Arcanedev\GeoIP\Providers; | ||
|
||
use Arcanedev\GeoIP\Console; | ||
use Arcanedev\Support\Providers\CommandServiceProvider as ServiceProvider; | ||
|
||
/** | ||
* Class CommandServiceProvider | ||
* | ||
* @package Arcanedev\GeoIP\Providers | ||
* @author ARCANEDEV <[email protected]> | ||
*/ | ||
class CommandServiceProvider extends ServiceProvider | ||
{ | ||
/* ------------------------------------------------------------------------------------------------ | ||
| Properties | ||
| ------------------------------------------------------------------------------------------------ | ||
*/ | ||
/** | ||
* The commands to be registered. | ||
* | ||
* @var array | ||
*/ | ||
protected $commands = [ | ||
Console\ClearCommand::class, | ||
Console\UpdateCommand::class, | ||
]; | ||
} |
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