Completed
Push — master ( dc704c...7795f0 )
by Albert
01:44
created
src/Api/Backup.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,8 +21,8 @@
 block discarded – undo
21 21
     /**
22 22
      * List all backups on the current account.
23 23
      *
24
-     * @param int    $sub_id    Filter result set to only contain backups of this subscription object
25
-     * @param string $backup_id filter result set to only contain this backup
24
+     * @param int    $subId    Filter result set to only contain backups of this subscription object
25
+     * @param string $backupId filter result set to only contain this backup
26 26
      * 
27 27
      * @return BackupEntity
28 28
      */
Please login to merge, or discard this patch.
src/Api/ReservedIp.php 1 patch
Doc Comments   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -82,9 +82,8 @@  discard block
 block discarded – undo
82 82
     /**
83 83
      * Convert an existing IP on a subscription to a reserved IP.
84 84
      *
85
-     * @param int    $serverId  SUBID of the server that currently has the IP address
85
+     * @param int    $serverIdd  SUBID of the server that currently has the IP address
86 86
      * @param string $ipAddress IP address you want to convert
87
-     * @param string $paramname Label for this reserved IP
88 87
      *
89 88
      * @throws HttpException
90 89
      */
@@ -108,7 +107,7 @@  discard block
 block discarded – undo
108 107
      *
109 108
      * @throws HttpException
110 109
      *
111
-     * @return ActionEntity
110
+     * @return string
112 111
      */
113 112
     public function attach($ipAddress, $serverId)
114 113
     {
Please login to merge, or discard this patch.
tests/TestCase.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -28,6 +28,9 @@
 block discarded – undo
28 28
         Mockery::close();
29 29
     }
30 30
 
31
+    /**
32
+     * @return AdapterInterface
33
+     */
31 34
     protected function getRequest()
32 35
     {
33 36
         return Mockery::mock(AdapterInterface::class)->shouldReceive('get')->andReturn($this->getResponse())->mock();
Please login to merge, or discard this patch.