@@ -45,7 +45,7 @@ discard block |
||
| 45 | 45 | /** |
| 46 | 46 | * Internal method used when outputting headers in the error description. |
| 47 | 47 | * |
| 48 | - * @param $name |
|
| 48 | + * @param string $name |
|
| 49 | 49 | * |
| 50 | 50 | * @return string |
| 51 | 51 | */ |
@@ -58,7 +58,7 @@ discard block |
||
| 58 | 58 | * Before outputting custom links, it is validated to ensure that the user is not |
| 59 | 59 | * directed off to a broken link. If a 404 is detected, it is hidden. |
| 60 | 60 | * |
| 61 | - * @param $link The proposed link |
|
| 61 | + * @param string $link The proposed link |
|
| 62 | 62 | * |
| 63 | 63 | * @return bool |
| 64 | 64 | */ |
@@ -38,7 +38,7 @@ |
||
| 38 | 38 | /** |
| 39 | 39 | * Set a node in the structure |
| 40 | 40 | * |
| 41 | - * @param $path The XPath to use |
|
| 41 | + * @param string $path The XPath to use |
|
| 42 | 42 | * @param $value The new value of the node |
| 43 | 43 | */ |
| 44 | 44 | public function set($path, $value) |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | * encapsulate your own logic to determine whether the resource has |
| 45 | 45 | * successfully transitioned. When TRUE is returned by the callback, |
| 46 | 46 | * the loop will end. |
| 47 | - * @param int|bool $timeout The maximum timeout in seconds. If the total time taken by the waiter has reached |
|
| 47 | + * @param integer $timeout The maximum timeout in seconds. If the total time taken by the waiter has reached |
|
| 48 | 48 | * or exceed this timeout, the blocking operation will immediately cease. If FALSE |
| 49 | 49 | * is provided, the timeout will never be considered. |
| 50 | 50 | * @param int $sleepPeriod The amount of time to pause between each HTTP request. |
@@ -69,7 +69,7 @@ discard block |
||
| 69 | 69 | /** |
| 70 | 70 | * Internal method used to identify whether a timeout has been exceeded. |
| 71 | 71 | * |
| 72 | - * @param bool|int $timeout |
|
| 72 | + * @param integer $timeout |
|
| 73 | 73 | * @param int $startTime |
| 74 | 74 | * |
| 75 | 75 | * @return bool |
@@ -87,7 +87,7 @@ discard block |
||
| 87 | 87 | * Convenience method providing a blocking operation until the resource transitions to an |
| 88 | 88 | * ``ACTIVE`` status. |
| 89 | 89 | * |
| 90 | - * @param int|bool $timeout The maximum timeout in seconds. If the total time taken by the waiter has reached |
|
| 90 | + * @param integer $timeout The maximum timeout in seconds. If the total time taken by the waiter has reached |
|
| 91 | 91 | * or exceed this timeout, the blocking operation will immediately cease. If FALSE |
| 92 | 92 | * is provided, the timeout will never be considered. |
| 93 | 93 | */ |
@@ -138,7 +138,7 @@ |
||
| 138 | 138 | * |
| 139 | 139 | * @param string $name The name of the object |
| 140 | 140 | * |
| 141 | - * @return Object |
|
| 141 | + * @return \OpenStack\Common\Resource\ResourceInterface |
|
| 142 | 142 | */ |
| 143 | 143 | public function getObject($name) |
| 144 | 144 | { |
@@ -96,6 +96,9 @@ discard block |
||
| 96 | 96 | } |
| 97 | 97 | } |
| 98 | 98 | |
| 99 | + /** |
|
| 100 | + * @param string $type |
|
| 101 | + */ |
|
| 99 | 102 | private function parseDocBlockValue($type, $val) |
| 100 | 103 | { |
| 101 | 104 | if (strpos($type, '[]') === 0 && is_array($val)) { |
@@ -120,6 +123,9 @@ discard block |
||
| 120 | 123 | ]); |
| 121 | 124 | } |
| 122 | 125 | |
| 126 | + /** |
|
| 127 | + * @return string |
|
| 128 | + */ |
|
| 123 | 129 | private function normalizeModelClass($class) |
| 124 | 130 | { |
| 125 | 131 | if (strpos($class, '\\') === false) { |
@@ -166,7 +172,7 @@ discard block |
||
| 166 | 172 | /** |
| 167 | 173 | * @param array $definition |
| 168 | 174 | * |
| 169 | - * @return mixed |
|
| 175 | + * @return ResponseInterface |
|
| 170 | 176 | */ |
| 171 | 177 | public function executeWithState(array $definition) |
| 172 | 178 | { |