Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
Signed-off-by: Mior Muhammad Zaki <[email protected]>
  • Loading branch information
crynobone committed Nov 26, 2024
1 parent e3419f7 commit 73e2dd8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 18 deletions.
18 changes: 5 additions & 13 deletions src/Foundation/Console/DuskCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,7 @@ class DuskCommand extends Command
*/
protected $description = 'Run the package Dusk tests';

/**
* Create a new command instance.
*/
/** {@inheritDoc} */
public function __construct()
{
parent::__construct();
Expand All @@ -42,11 +40,8 @@ public function __construct()
}
}

/**
* Execute the console command.
*
* @return mixed
*/
/** {@inheritDoc} */
#[\Override]
public function handle()
{
$this->callSilent('package:dusk-purge');
Expand Down Expand Up @@ -115,11 +110,8 @@ protected function removeConfiguration()
}
}

/**
* Get the PHP binary environment variables.
*
* @return array|null
*/
/** {@inheritDoc} */
#[\Override]
protected function env()
{
return array_merge(parent::env() ?? [], [
Expand Down
6 changes: 1 addition & 5 deletions src/Foundation/Console/PurgeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,7 @@ class PurgeCommand extends Command
*/
protected $description = 'Purge the package debugging files for Dusk';

/**
* Create a new command instance.
*
* @return void
*/
/** {@inheritDoc} */
public function __construct()
{
parent::__construct();
Expand Down

0 comments on commit 73e2dd8

Please sign in to comment.