Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze committed Mar 24, 2021
1 parent 1b8b8d6 commit 4be10a9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to `ignition` will be documented in this file

## 2.6.0 - 2021-03-24

- add extra output to test command when executing verbosely.

## 2.5.14 - 2021-03-03

- fix ignition not working when there is no argv
Expand Down
4 changes: 4 additions & 0 deletions src/Commands/TestCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,10 @@ protected function sendTestException()
} catch (Exception $exception) {
$this->warn('❌ We were unable to send an exception to Flare. Make sure that your key is correct and that you have a valid subscription. '.PHP_EOL.PHP_EOL.'For more info visit the docs on installing Flare in a Laravel project: https://flareapp.io/docs/ignition-for-laravel/introduction');

if ($this->output->isVerbose()) {
throw $exception;
}

return;
}

Expand Down

0 comments on commit 4be10a9

Please sign in to comment.