Completed
Push — master ( ba1cae...212f6f )
by Chris
02:20
created

GlobeLabsSmsSent::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
1
<?php
2
3
namespace Coreproc\GlobeLabsSms\Events;
4
5
use Illuminate\Foundation\Events\Dispatchable;
6
use Psr\Http\Message\ResponseInterface;
7
8
class GlobeLabsSmsSent
9
{
10
    use Dispatchable;
11
12
    protected $response;
13
14
    /**
15
     * Create a new event instance.
16
     *
17
     * @param ResponseInterface $response
18
     */
19
    public function __construct(ResponseInterface $response)
20
    {
21
        $this->response = $response;
22
    }
23
24
    public function getResponse()
25
    {
26
        return $this->response;
27
    }
28
}
29