Skip to content

Commit 5509140

Browse files
committed
fix(clish.cmd): ensure file is str
1 parent ca97ef5 commit 5509140

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Console/ClishCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public function __construct()
4444

4545
public function interact(Interactor $io)
4646
{
47-
if ($this->file) {
47+
if (\is_string($this->file)) {
4848
return;
4949
}
5050

0 commit comments

Comments
 (0)