Completed
Push — master ( 0a69a5...2d08b8 )
by Abdullah
03:18
created

ZendeskTicketWasUpdated   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 0%

Importance

Changes 2
Bugs 0 Features 0
Metric Value
wmc 1
c 2
b 0
f 0
lcom 0
cbo 0
dl 0
loc 14
ccs 0
cts 4
cp 0
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
3
namespace NotificationChannels\Zendesk\Events;
4
5
class ZendeskTicketWasUpdated
6
{
7
    public $ticket;
8
9
    /**
10
     * Create a new event instance.
11
     *
12
     * @param $ticket
13
     */
14
    public function __construct($ticket)
15
    {
16
        $this->ticket = $ticket;
17
    }
18
}
19