MovedRivetFile   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 3
Bugs 0 Features 0
Metric Value
wmc 1
c 3
b 0
f 0
lcom 0
cbo 0
dl 0
loc 12
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
1
<?php
2
3
namespace Luminark\Rivet\Events;
4
5
use Luminark\Rivet\Models\Rivet;
6
7
class MovedRivetFile
8
{
9
    public $rivet;
10
11
    public $filePath;
12
13
    public function __construct(Rivet $rivet, $filePath)
14
    {
15
        $this->rivet = $rivet;
16
        $this->filePath = $filePath;
17
    }
18
}
19