These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more
1 | <?php |
||
2 | |||
3 | namespace App\Containers\User\Tasks; |
||
4 | |||
5 | use App\Containers\User\Data\Repositories\UserRepository; |
||
6 | use App\Containers\User\Models\User; |
||
7 | use App\Ship\Exceptions\NotFoundException; |
||
8 | use App\Ship\Parents\Tasks\Task; |
||
9 | use Exception; |
||
10 | |||
11 | /** |
||
12 | * Class FindUserByEmailTask |
||
13 | * |
||
14 | * @author Sebastian Weckend |
||
15 | */ |
||
16 | View Code Duplication | class FindUserByEmailTask extends Task |
|
0 ignored issues
–
show
|
|||
17 | { |
||
18 | |||
19 | protected $repository; |
||
20 | |||
21 | public function __construct(UserRepository $repository) |
||
22 | { |
||
23 | $this->repository = $repository; |
||
24 | } |
||
25 | |||
26 | /** |
||
27 | * @param string $email |
||
28 | * |
||
29 | * @return User |
||
30 | * @throws NotFoundException |
||
31 | */ |
||
32 | public function run(string $email): User |
||
33 | { |
||
34 | try { |
||
35 | return $this->repository->findByField('email', $email)->first(); |
||
36 | } catch (Exception $e) { |
||
37 | throw new NotFoundException(); |
||
38 | } |
||
39 | } |
||
40 | } |
||
41 |
Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.
You can also find more detailed suggestions in the “Code” section of your repository.