File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -40,35 +40,35 @@ public function success() : bool
40
40
return $ status >= 200 && $ status < 300 ;
41
41
}
42
42
43
- protected function doDelete (array $ parameters ) : array
43
+ protected function doDelete (array $ parameters ) : ? array
44
44
{
45
45
$ url = $ this ->getUrl ($ parameters );
46
46
47
47
return $ this ->client ->delete ($ url );
48
48
}
49
49
50
- protected function doGet (array $ parameters ) : array
50
+ protected function doGet (array $ parameters ) : ? array
51
51
{
52
52
$ url = $ this ->getUrl ($ parameters );
53
53
54
54
return $ this ->client ->get ($ url , $ parameters );
55
55
}
56
56
57
- protected function doPatch (array $ parameters ) : array
57
+ protected function doPatch (array $ parameters ) : ? array
58
58
{
59
59
$ url = $ this ->getUrl ($ parameters );
60
60
61
61
return $ this ->client ->patch ($ url , $ parameters );
62
62
}
63
63
64
- protected function doPost (array $ parameters ) : array
64
+ protected function doPost (array $ parameters ) : ? array
65
65
{
66
66
$ url = $ this ->getUrl ($ parameters );
67
67
68
68
return $ this ->client ->post ($ url , $ parameters );
69
69
}
70
70
71
- protected function doPut (array $ parameters ) : array
71
+ protected function doPut (array $ parameters ) : ? array
72
72
{
73
73
$ url = $ this ->getUrl ($ parameters );
74
74
You can’t perform that action at this time.
0 commit comments