ApplicationRetrieved   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 1
eloc 4
dl 0
loc 14
ccs 0
cts 2
cp 0
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php
2
3
namespace App\Events;
4
5
use Illuminate\Queue\SerializesModels;
6
use App\Models\JobApplication;
7
8
class ApplicationRetrieved
9
{
10
    use SerializesModels;
11
12
    public $application;
13
14
    /**
15
     * Create a new event instance.
16
     *
17
     * @return void
18
     */
19
    public function __construct(JobApplication $application)
20
    {
21
        $this->application = $application;
22
    }
23
}
24