Completed
Push — develop ( 9ee49b...09fe33 )
by Martin
02:19
created

MovedRivetFile::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 5
rs 9.4285
cc 1
eloc 3
nc 1
nop 2
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