ajax step status check standardized

This commit is contained in:
Tony Murray
2020-06-27 07:47:08 -05:00
parent c750107906
commit 610475356f
11 changed files with 46 additions and 25 deletions
@@ -73,9 +73,9 @@ class MakeUserController extends InstallationController
return redirect()->back()->with('message', $message);
}
public static function enabled()
public static function enabled(): bool
{
return session('install.migrate');
return (bool)session('install.migrate');
}
public static function icon(): string