Skip to content

Commit

Permalink
Add comments
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanpisa committed Mar 11, 2023
1 parent d92fbf9 commit a02c1b0
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/Commands/InstallCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,23 @@

class InstallCommand extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
public $signature = 'rockero:install';

/**
* The console command description.
*
* @var string
*/
public $description = 'Install starter kit';

/**
* Execute the console command.
*/
public function handle(): void
{
if ($this->ask('Do you wish to setup CI?')) {
Expand Down
5 changes: 5 additions & 0 deletions src/Facades/StarterKit.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@
*/
class StarterKit extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return \Rockero\StarterKit\StarterKit::class;
Expand Down

0 comments on commit a02c1b0

Please sign in to comment.