This repository has been archived by the owner on Jan 18, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Response.php
98 lines (85 loc) · 1.79 KB
/
Response.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<?php
/*
* This file is part of NotifyMe.
*
* (c) Alt Three Services Limited
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace NotifyMeHQ\Http;
use NotifyMeHQ\Contracts\ResponseInterface;
class Response implements ResponseInterface
{
/**
* Has the message sent by the gateway?
*
* @var bool
*/
protected $success;
/**
* The response message from the notification gateway.
*
* @var string
*/
protected $message;
/**
* The raw response information.
*
* @var array
*/
protected $response;
/**
* Determine if the message has been sent by the gateway.
*
* @return bool
*/
public function isSent()
{
return (bool) $this->success;
}
/**
* Get the response message from the gateway.
*
* @return string
*/
public function message()
{
return (string) $this->message;
}
/**
* Get the raw data from the gateway.
*
* @return array
*/
public function raw()
{
return $this->response;
}
/**
* Set the raw response array from the gateway.
*
* @param array $response
*
* @return \NotifyMeHQ\Contracts\ResponseInterface
*/
public function setRaw(array $response)
{
$this->response = $response;
return $this;
}
/**
* Map the given array onto the response's properties.
*
* @param array $attributes
*
* @return \NotifyMeHQ\Contracts\ResponseInterface
*/
public function map(array $attributes)
{
foreach ($attributes as $key => $value) {
$this->{$key} = $value;
}
return $this;
}
}