@@ -69,6 +69,9 @@ |
||
| 69 | 69 | $this->deletedObject = true; |
| 70 | 70 | } |
| 71 | 71 | |
| 72 | + /** |
|
| 73 | + * @param string $field |
|
| 74 | + */ |
|
| 72 | 75 | private function editField ($field, $value) |
| 73 | 76 | { |
| 74 | 77 | $this->checkInvalid(); |
@@ -233,7 +233,7 @@ |
||
| 233 | 233 | * |
| 234 | 234 | * @throws \allejo\DaPulse\Exceptions\CurlException If cURL is misconfigured or encounters an error |
| 235 | 235 | * |
| 236 | - * @return mixed |
|
| 236 | + * @return string |
|
| 237 | 237 | */ |
| 238 | 238 | private function executeCurl () |
| 239 | 239 | { |
@@ -56,7 +56,7 @@ discard block |
||
| 56 | 56 | */ |
| 57 | 57 | public function __construct ($url, $urlParams) |
| 58 | 58 | { |
| 59 | - $this->url = $url . "?" . self::formatParameters($urlParams); |
|
| 59 | + $this->url = $url."?".self::formatParameters($urlParams); |
|
| 60 | 60 | $this->cURL = curl_init(); |
| 61 | 61 | |
| 62 | 62 | $this->configureCurl(); |
@@ -89,7 +89,7 @@ discard block |
||
| 89 | 89 | |
| 90 | 90 | curl_setopt_array($this->cURL, array( |
| 91 | 91 | CURLOPT_HTTPAUTH => CURLAUTH_BASIC, |
| 92 | - CURLOPT_USERPWD => $username . ":" . $password |
|
| 92 | + CURLOPT_USERPWD => $username.":".$password |
|
| 93 | 93 | )); |
| 94 | 94 | } |
| 95 | 95 | |
@@ -309,7 +309,7 @@ discard block |
||
| 309 | 309 | continue; |
| 310 | 310 | } |
| 311 | 311 | |
| 312 | - $parameters[] = rawurlencode($key) . "=" . rawurlencode($value); |
|
| 312 | + $parameters[] = rawurlencode($key)."=".rawurlencode($value); |
|
| 313 | 313 | } |
| 314 | 314 | |
| 315 | 315 | return implode("&", $parameters); |
@@ -25,7 +25,7 @@ |
||
| 25 | 25 | return (isset($this->apiToken)); |
| 26 | 26 | } |
| 27 | 27 | |
| 28 | - public function getApiToken() |
|
| 28 | + public function getApiToken () |
|
| 29 | 29 | { |
| 30 | 30 | return $this->apiToken; |
| 31 | 31 | } |
@@ -1,8 +1,8 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -$auth = json_decode(file_get_contents(__DIR__ . '/../phpunit-auth.json'), true); |
|
| 4 | -$findAndReplace = json_decode(file_get_contents(__DIR__ . '/sanitize-values.json'), true); |
|
| 5 | -$fixtures = file_get_contents(__DIR__ . '/fixtures/PhpPulseVCR'); |
|
| 3 | +$auth = json_decode(file_get_contents(__DIR__.'/../phpunit-auth.json'), true); |
|
| 4 | +$findAndReplace = json_decode(file_get_contents(__DIR__.'/sanitize-values.json'), true); |
|
| 5 | +$fixtures = file_get_contents(__DIR__.'/fixtures/PhpPulseVCR'); |
|
| 6 | 6 | |
| 7 | 7 | $sanitized = str_replace($auth['apiToken'], 'YourApiKeyHere', $fixtures); |
| 8 | 8 | |
@@ -11,4 +11,4 @@ discard block |
||
| 11 | 11 | $sanitized = str_replace($key, $value, $sanitized); |
| 12 | 12 | } |
| 13 | 13 | |
| 14 | -file_put_contents(__DIR__ . '/fixtures/PhpPulseVCR-sanitized', $sanitized); |
|
| 15 | 14 | \ No newline at end of file |
| 15 | +file_put_contents(__DIR__.'/fixtures/PhpPulseVCR-sanitized', $sanitized); |
|
| 16 | 16 | \ No newline at end of file |
@@ -56,7 +56,7 @@ |
||
| 56 | 56 | $url = sprintf("%s/%d/columns/%s/text.json", self::apiEndpoint(), $this->board_id, $this->column_id); |
| 57 | 57 | $postParams = array( |
| 58 | 58 | "pulse_id" => $this->pulse_id, |
| 59 | - "text" => (string)$text |
|
| 59 | + "text" => (string) $text |
|
| 60 | 60 | ); |
| 61 | 61 | |
| 62 | 62 | $result = self::sendPut($url, $postParams); |
@@ -274,7 +274,7 @@ |
||
| 274 | 274 | * @param string $title |
| 275 | 275 | * @since 0.1.0 |
| 276 | 276 | */ |
| 277 | - public function editName($title) |
|
| 277 | + public function editName ($title) |
|
| 278 | 278 | { |
| 279 | 279 | $this->jsonResponse = self::editPulseNameCall($this->getId(), $title); |
| 280 | 280 | $this->assignResults(); |
@@ -91,7 +91,7 @@ discard block |
||
| 91 | 91 | /** |
| 92 | 92 | * The note's id. |
| 93 | 93 | * |
| 94 | - * @return string |
|
| 94 | + * @return integer |
|
| 95 | 95 | */ |
| 96 | 96 | public function getId () |
| 97 | 97 | { |
@@ -173,7 +173,7 @@ discard block |
||
| 173 | 173 | * |
| 174 | 174 | * @param null|string $title The new title of the note |
| 175 | 175 | * @param null|string $content The new content of the note |
| 176 | - * @param null|int|PulseUser $userId The new author of the note |
|
| 176 | + * @param string $userId The new author of the note |
|
| 177 | 177 | * @param null|bool $createUpdate Whether to create an update or not |
| 178 | 178 | * |
| 179 | 179 | * @since 0.1.0 |
@@ -122,7 +122,7 @@ discard block |
||
| 122 | 122 | * |
| 123 | 123 | * @api |
| 124 | 124 | * @since 0.1.0 |
| 125 | - * @return string |
|
| 125 | + * @return integer |
|
| 126 | 126 | */ |
| 127 | 127 | public function getId () |
| 128 | 128 | { |
@@ -298,7 +298,7 @@ discard block |
||
| 298 | 298 | * |
| 299 | 299 | * @since 0.3.0 Previously was available as 'getHasAssets()' |
| 300 | 300 | * |
| 301 | - * @return bool |
|
| 301 | + * @return string |
|
| 302 | 302 | */ |
| 303 | 303 | public function hasAssets () |
| 304 | 304 | { |
@@ -448,7 +448,7 @@ discard block |
||
| 448 | 448 | * @api |
| 449 | 449 | * |
| 450 | 450 | * @param int|PulseUser $user The author of this post |
| 451 | - * @param int|Pulse $pulse The Pulse to whom this update will belong to |
|
| 451 | + * @param integer $pulse The Pulse to whom this update will belong to |
|
| 452 | 452 | * @param string $text The content of the update |
| 453 | 453 | * @param null|bool $announceToAll Whether or not to announce this update to everyone's wall |
| 454 | 454 | * |
@@ -151,12 +151,12 @@ discard block |
||
| 151 | 151 | /** |
| 152 | 152 | * {@inheritdoc} |
| 153 | 153 | */ |
| 154 | - public function jsonSerialize() |
|
| 154 | + public function jsonSerialize () |
|
| 155 | 155 | { |
| 156 | 156 | return $this->jsonResponse; |
| 157 | 157 | } |
| 158 | 158 | |
| 159 | - protected function lazyLoad() |
|
| 159 | + protected function lazyLoad () |
|
| 160 | 160 | { |
| 161 | 161 | if (empty($this->jsonResponse)) |
| 162 | 162 | { |
@@ -315,7 +315,7 @@ discard block |
||
| 315 | 315 | { |
| 316 | 316 | if (self::lazyCastNeeded($target, $objectType)) |
| 317 | 317 | { |
| 318 | - $object = ($objectType[0] == "\\") ? $objectType : self::OBJ_NAMESPACE . $objectType; |
|
| 318 | + $object = ($objectType[0] == "\\") ? $objectType : self::OBJ_NAMESPACE.$objectType; |
|
| 319 | 319 | $target = new $object($target); |
| 320 | 320 | } |
| 321 | 321 | } |
@@ -351,7 +351,7 @@ discard block |
||
| 351 | 351 | */ |
| 352 | 352 | final protected static function lazyCastNeeded ($target, $objectType) |
| 353 | 353 | { |
| 354 | - $objectDefinition = ($objectType[0] === "\\") ? $objectType : self::OBJ_NAMESPACE . $objectType; |
|
| 354 | + $objectDefinition = ($objectType[0] === "\\") ? $objectType : self::OBJ_NAMESPACE.$objectType; |
|
| 355 | 355 | |
| 356 | 356 | return !($target instanceof $objectDefinition); |
| 357 | 357 | } |
@@ -388,7 +388,7 @@ discard block |
||
| 388 | 388 | */ |
| 389 | 389 | final protected static function castArrayToObjectArray ($className, $objects) |
| 390 | 390 | { |
| 391 | - $class = self::OBJ_NAMESPACE . $className; |
|
| 391 | + $class = self::OBJ_NAMESPACE.$className; |
|
| 392 | 392 | $array = array(); |
| 393 | 393 | |
| 394 | 394 | foreach ($objects as $post) |