Skip to content

Commit 9b40ac2

Browse files
committed
Fix bcrypt refences in config file
1 parent 618765b commit 9b40ac2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

config/stagefront.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,15 @@
3636

3737
/**
3838
* The password to use. You can set it in plain text,
39-
* or use bcrypt('my-secret') to generate an encrypted value.
39+
* or use \Hash::make('my-secret') to generate an encrypted value.
4040
*
4141
* Default: 'stagefront' (change this!)
4242
*/
4343
'password' => env('STAGEFRONT_PASSWORD', 'stagefront'),
4444

4545
/**
4646
* Are you using an encrypted password?
47-
* Set this to true and use bcrypt('my-secret') to generate an encrypted value.
47+
* Set this to true and use \Hash::make('my-secret') to generate an encrypted value.
4848
* Or set this to false and use a plain text password.
4949
*
5050
* Default: false

0 commit comments

Comments
 (0)