Passed
Push — dev6 ( 72e99e...1f4a51 )
by Ron
18:35
created

ImageUploadedEvent::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 1
c 1
b 0
f 0
dl 0
loc 3
rs 10
cc 1
nc 1
nop 1
1
<?php
2
3
namespace App\Events\Home;
4
5
use Illuminate\Broadcasting\Channel;
6
use Illuminate\Broadcasting\InteractsWithSockets;
7
use Illuminate\Broadcasting\PresenceChannel;
8
use Illuminate\Broadcasting\PrivateChannel;
9
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
10
use Illuminate\Foundation\Events\Dispatchable;
11
use Illuminate\Queue\SerializesModels;
12
13
class ImageUploadedEvent
14
{
15
    use Dispatchable;
16
    use SerializesModels;
1 ignored issue
show
introduced by
The trait Illuminate\Queue\SerializesModels requires some properties which are not provided by App\Events\Home\ImageUploadedEvent: $id, $relations, $class, $connection, $keyBy
Loading history...
17
    use InteractsWithSockets;
18
19
    public $location;
20
21
    /**
22
     * Create a new event instance
23
     */
24
    public function __construct($location)
25
    {
26
        $this->location = $location;
27
    }
28
}
29