@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | |
33 | 33 | /** |
34 | 34 | * Executes a Boot command |
35 | - * @return GuzzleHttp\Psr7\Response |
|
35 | + * @return \Psr\Http\Message\ResponseInterface |
|
36 | 36 | */ |
37 | 37 | public function boot(){ |
38 | 38 | return $this->exec("linode.boot"); |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | |
41 | 41 | /** |
42 | 42 | * Executes a Reboot command |
43 | - * @return GuzzleHttp\Psr7\Response |
|
43 | + * @return \Psr\Http\Message\ResponseInterface |
|
44 | 44 | */ |
45 | 45 | public function reboot(){ |
46 | 46 | return $this->exec("linode.reboot"); |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | |
49 | 49 | /** |
50 | 50 | * Executes a Shutdown command |
51 | - * @return GuzzleHttp\Psr7\Response |
|
51 | + * @return \Psr\Http\Message\ResponseInterface |
|
52 | 52 | */ |
53 | 53 | public function shutdown(){ |
54 | 54 | return $this->exec("linode.shutdown"); |
@@ -65,7 +65,8 @@ discard block |
||
65 | 65 | |
66 | 66 | /** |
67 | 67 | * Executes a command on the API |
68 | - * @return GuzzleHttp\Psr7\Response |
|
68 | + * @param string $action |
|
69 | + * @return \Psr\Http\Message\ResponseInterface |
|
69 | 70 | */ |
70 | 71 | protected function exec($action){ |
71 | 72 | $url = $this->buildRequestUrl($action); |