Skip to content

Commit

Permalink
Fixed is_dir
Browse files Browse the repository at this point in the history
  • Loading branch information
tenmajkl committed Aug 18, 2021
1 parent 2dd2713 commit 6fc97db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Kernel/Lemonade/Repl/repl.php
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public function run($directory)

$dir = $directory . DIRECTORY_SEPARATOR . "app";

if (isdir($dir))
if (is_dir($dir))
loader($dir);

$this->last_command = "";
Expand Down

0 comments on commit 6fc97db

Please sign in to comment.