Skip to content

Commit d4017d8

Browse files
fix(command): remove return from handle method
1 parent 71ac834 commit d4017d8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Console/Commands/ListThemes.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ public function handle()
4646
}
4747

4848
if (0 == count($this->themes)) {
49-
return $this->error("Your application doesn't have any theme.");
49+
$this->error("Your application doesn't have any theme.");
50+
} else {
51+
$this->table($this->headers, $this->themes);
5052
}
51-
52-
$this->table($this->headers, $this->themes);
5353
}
5454
}

0 commit comments

Comments
 (0)