Check if realpath() returns false
realpath() returns false in case the directory does not exist. Found it while preparing strict_typing for PHP7+. Signed-off-by: Morris Jobke <hey@morrisjobke.de>
This commit is contained in:
parent
e4e39910f3
commit
1efde41333
1 changed files with 1 additions and 1 deletions
|
@ -186,7 +186,7 @@ class MigrationService {
|
|||
|
||||
protected function findMigrations() {
|
||||
$directory = realpath($this->migrationsPath);
|
||||
if (!file_exists($directory) || !is_dir($directory)) {
|
||||
if ($directory === false || !file_exists($directory) || !is_dir($directory)) {
|
||||
return [];
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue