Skip to content

Commit

Permalink
Command Descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
ben182 committed Feb 7, 2019
1 parent dfdfd89 commit 1be2b56
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/AbTestingFacade.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use Illuminate\Support\Facades\Facade;

/**
* @see \Ben182\AbTesting\Skeleton\SkeletonClass
* @see \Ben182\AbTesting\AbTesting
*/
class AbTestingFacade extends Facade
{
Expand Down
2 changes: 1 addition & 1 deletion src/Commands/ReportCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class ReportCommand extends Command
*
* @var string
*/
protected $description = 'Command description';
protected $description = 'Shows a table with experiment and goal insights';

/**
* Create a new command instance.
Expand Down
4 changes: 3 additions & 1 deletion src/Commands/ResetCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class ResetCommand extends Command
*
* @var string
*/
protected $description = 'Command description';
protected $description = 'Deletes all experiment visitors and goal completions';

/**
* Create a new command instance.
Expand All @@ -41,5 +41,7 @@ public function handle()
{
Goal::truncate();
Experiment::truncate();

$this->info('Successfully deleted all experiment visitors and goal completions.');
}
}

0 comments on commit 1be2b56

Please # to comment.