CreateStudent::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 1
dl 0
loc 3
rs 10
1
<?php
2
3
namespace App\Actions;
4
5
use App\Models\School;
6
use App\Models\User;
7
use App\Services\VerificationCodeGenerator;
8
9
final class CreateStudent
10
{
11
    private VerificationCodeGenerator $codeGenerator;
12
13
    public function __construct(VerificationCodeGenerator $codeGenerator)
14
    {
15
        $this->codeGenerator = $codeGenerator;
16
    }
17
18
    public function handle(School $school, array $data): User
19
    {
20
        /** @var User $student */
21
        $student = $school->students()->make($data);
22
        $student->verification_code = $this->codeGenerator->generate();
23
        $student->save();
24
25
        return $student;
26
    }
27
}
28