thecodingmachine /
tdbm
| 1 | <?php |
||
| 2 | |||
| 3 | namespace TheCodingMachine\TDBM\Fixtures\Traits; |
||
| 4 | |||
| 5 | use function password_verify; |
||
| 6 | |||
| 7 | trait TestUserTrait |
||
| 8 | { |
||
| 9 | public function verifyPassword(string $password): bool |
||
| 10 | { |
||
| 11 | return password_verify($password, $this->getPassword()); |
||
|
0 ignored issues
–
show
Bug
introduced
by
Loading history...
|
|||
| 12 | } |
||
| 13 | |||
| 14 | public function method1(): string |
||
| 15 | { |
||
| 16 | return 'TestUserTrait'; |
||
| 17 | } |
||
| 18 | } |
||
| 19 |