Completed
Push — master ( 36bbdb...4b40a1 )
by Lorenzo
12:07
created

UploadDeleteExecuted::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 6
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 3
1
<?php
2
3
4
namespace Padosoft\Uploadable\Events;
5
6
use Illuminate\Database\Eloquent\Model;
7
8
class UploadDeleteExecuted
9
{
10
    /**
11
     * @var String
12
     */
13
    public $attributeName;
14
    /**
15
     * @var String
16
     */
17
    public $attributeValue;
18
    /**
19
     * @var Model
20
     */
21
    public $target;
22
23
    public function __construct($attributeName, $attributeValue, $target)
24
    {
25
        $this->attributeName = $attributeName;
26
        $this->attributeValue = $attributeValue;
27
        $this->target = $target;
28
    }
29
}
30