Skip to content

Commit 97f8f0b

Browse files
gnikolovskiweitzman
authored andcommitted
Fix undefined variable preflightArgs notice (#3679)
1 parent a330e39 commit 97f8f0b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Preflight/Preflight.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ public function preflight($argv)
294294
// when preflightArgs->alias() returns an alias name. In all other
295295
// instances we will get an alias record, even if it is only a
296296
// placeholder 'self' with the root holding the cwd.
297-
$aliasName = $preflightArgs->alias();
297+
$aliasName = $this->preflightArgs->alias();
298298
throw new \Exception("The alias $aliasName could not be found.");
299299
}
300300

0 commit comments

Comments
 (0)