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

UploadExecuted::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

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