diff --git a/src/Illuminate/Hashing/ArgonHasher.php b/src/Illuminate/Hashing/ArgonHasher.php index f0b6943b12a2..013249ab1f04 100644 --- a/src/Illuminate/Hashing/ArgonHasher.php +++ b/src/Illuminate/Hashing/ArgonHasher.php @@ -29,11 +29,11 @@ class ArgonHasher implements HasherContract protected $threads = 2; /** - * Constructor + * Constructor. * * @param array $options */ - public function __construct($options=null) + public function __construct($options = null) { $this->memory = $options['memory'] ?? $this->memory; $this->time = $options['time'] ?? $this->time; diff --git a/src/Illuminate/Hashing/BcryptHasher.php b/src/Illuminate/Hashing/BcryptHasher.php index 3a6467acddca..7209b92d9cec 100755 --- a/src/Illuminate/Hashing/BcryptHasher.php +++ b/src/Illuminate/Hashing/BcryptHasher.php @@ -15,11 +15,11 @@ class BcryptHasher implements HasherContract protected $rounds = 10; /** - * Constructor + * Constructor. * * @param array $options */ - public function __construct($options=null) + public function __construct($options = null) { $this->rounds = $options['rounds'] ?? $this->rounds; }