@@ -69,10 +69,10 @@ |
||
69 | 69 | * the encoder to use, defaults to BCryptPasswordEncoder if null is given |
70 | 70 | */ |
71 | 71 | public function __construct(PasswordEncoderInterface $encoder = null) { |
72 | - $this->encoder = $encoder; |
|
73 | - if ($this->encoder === null) { |
|
74 | - $this->encoder = new BCryptPasswordEncoder(13); |
|
75 | - } |
|
72 | + $this->encoder = $encoder; |
|
73 | + if ($this->encoder === null) { |
|
74 | + $this->encoder = new BCryptPasswordEncoder(13); |
|
75 | + } |
|
76 | 76 | } |
77 | 77 | |
78 | 78 | /** |