Skip to content

Commit 7ae11c8

Browse files
committed
Merge branch 'marispro-patch-1' into main
2 parents 019aebb + 3a46d6a commit 7ae11c8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/View/Components/Command.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public function __construct($name) {
2121
$commands = Artisan::all();
2222

2323
if (!in_array($name, array_keys($commands)))
24-
throw new \Exception("Command not found");
24+
throw new \Exception("Command \"{$name}\" not found");
2525

2626
$this->command = $commands[$name];
2727
$this->arguments = $this->command->getDefinition()->getArguments();
@@ -31,4 +31,4 @@ public function __construct($name) {
3131
public function render() {
3232
return view('gui::components.command');
3333
}
34-
}
34+
}

0 commit comments

Comments
 (0)