Skip to content

Commit

Permalink
Merge branch 'main' of github.com:ohdearapp/ohdear-pulse
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze committed Jan 7, 2024
2 parents b4c8872 + fc60d97 commit 9a88d4c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/Commands/VerifyCommand.php
Expand Up @@ -5,7 +5,6 @@
use Exception;
use Illuminate\Console\Command;
use OhDear\PhpSdk\OhDear;
use function Termwind\render;

class VerifyCommand extends Command
{
Expand All @@ -31,7 +30,7 @@ public function handle()
public function verifySdkInstalled(): self
{
if (! class_exists(OhDear::class)) {
throw new Exception("You must install the Oh Dear SDK in order to sync your schedule with Oh Dear. Run `composer require ohdearapp/ohdear-php-sdk`.");
throw new Exception('You must install the Oh Dear SDK in order to sync your schedule with Oh Dear. Run `composer require ohdearapp/ohdear-php-sdk`.');
}

$this->comment('The Oh Dear SDK is installed.');
Expand Down

0 comments on commit 9a88d4c

Please sign in to comment.