Completed
Push — master ( 6d4901...0b42c8 )
by Ryan
01:44
created
src/Resources/CrmAssociations.php 1 patch
Doc Comments   +2 added lines, -5 removed lines patch added patch discarded remove patch
@@ -5,11 +5,10 @@  discard block
 block discarded – undo
5 5
 class CrmAssociations extends Resource
6 6
 {
7 7
     /**
8
-     * @param array $ticket Array of deal properties.
9 8
      *
10 9
      * @throws \SevenShores\Hubspot\Exceptions\BadRequest
11 10
      *
12
-     * @return mixed
11
+     * @return \Psr\Http\Message\ResponseInterface
13 12
      */
14 13
     public function create(array $data)
15 14
     {
@@ -21,10 +20,8 @@  discard block
 block discarded – undo
21 20
     }
22 21
 
23 22
     /**
24
-     * @param int   $id     The deal id.
25
-     * @param array $ticket The deal properties to update.
26 23
      *
27
-     * @return mixed
24
+     * @return \Psr\Http\Message\ResponseInterface
28 25
      */
29 26
     public function delete(array $data)
30 27
     {
Please login to merge, or discard this patch.
src/Resources/Tickets.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
      *
10 10
      * @throws \SevenShores\Hubspot\Exceptions\BadRequest
11 11
      *
12
-     * @return mixed
12
+     * @return \Psr\Http\Message\ResponseInterface
13 13
      */
14 14
     public function create(array $ticket)
15 15
     {
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
      * @param int   $id     The deal id.
25 25
      * @param array $ticket The deal properties to update.
26 26
      *
27
-     * @return mixed
27
+     * @return \Psr\Http\Message\ResponseInterface
28 28
      */
29 29
     public function update($id, array $ticket)
30 30
     {
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
     /**
55 55
      * @param int $id
56 56
      *
57
-     * @return mixed
57
+     * @return \Psr\Http\Message\ResponseInterface
58 58
      */
59 59
     public function delete($id)
60 60
     {
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
     /**
67 67
      * @param int $id
68 68
      *
69
-     * @return mixed
69
+     * @return \Psr\Http\Message\ResponseInterface
70 70
      */
71 71
     public function getById($id)
72 72
     {
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
     /**
79 79
      * @param array $params Optional parameters ['timestamp', 'changeType', 'objectId']
80 80
      *
81
-     * @return mixed
81
+     * @return \Psr\Http\Message\ResponseInterface
82 82
      */
83 83
     public function getChangelog(array $params = [])
84 84
     {
Please login to merge, or discard this patch.