@@ -214,6 +214,7 @@ discard block |
||
| 214 | 214 | * Set the HTTP method for this request. |
| 215 | 215 | * |
| 216 | 216 | * @param string |
| 217 | + * @param string|null $method |
|
| 217 | 218 | * |
| 218 | 219 | * @return FacebookRequest |
| 219 | 220 | */ |
@@ -252,6 +253,7 @@ discard block |
||
| 252 | 253 | * Set the endpoint for this request. |
| 253 | 254 | * |
| 254 | 255 | * @param string |
| 256 | + * @param string|null $endpoint |
|
| 255 | 257 | * |
| 256 | 258 | * @return FacebookRequest |
| 257 | 259 | * |
@@ -213,7 +213,7 @@ |
||
| 213 | 213 | /** |
| 214 | 214 | * Returns the exception that was thrown for this request. |
| 215 | 215 | * |
| 216 | - * @return FacebookSDKException|null |
|
| 216 | + * @return FacebookSDKException |
|
| 217 | 217 | */ |
| 218 | 218 | public function getThrownException() |
| 219 | 219 | { |
@@ -156,7 +156,7 @@ |
||
| 156 | 156 | * @param string $endpoint The endpoint to POST to. |
| 157 | 157 | * @param array $params The params to send with the request. |
| 158 | 158 | * |
| 159 | - * @return array |
|
| 159 | + * @return FacebookFile |
|
| 160 | 160 | */ |
| 161 | 161 | private function sendUploadRequest($endpoint, $params = []) |
| 162 | 162 | { |
@@ -69,7 +69,7 @@ discard block |
||
| 69 | 69 | /** |
| 70 | 70 | * Returns the raw signed request data. |
| 71 | 71 | * |
| 72 | - * @return string|null |
|
| 72 | + * @return string |
|
| 73 | 73 | */ |
| 74 | 74 | public function getRawSignedRequest() |
| 75 | 75 | { |
@@ -90,7 +90,7 @@ discard block |
||
| 90 | 90 | * Returns a property from the signed request data if available. |
| 91 | 91 | * |
| 92 | 92 | * @param string $key |
| 93 | - * @param mixed|null $default |
|
| 93 | + * @param integer $default |
|
| 94 | 94 | * |
| 95 | 95 | * @return mixed|null |
| 96 | 96 | */ |
@@ -34,7 +34,7 @@ |
||
| 34 | 34 | * Remove params from a URL. |
| 35 | 35 | * |
| 36 | 36 | * @param string $url The URL to filter. |
| 37 | - * @param array $paramsToFilter The params to filter from the URL. |
|
| 37 | + * @param string[] $paramsToFilter The params to filter from the URL. |
|
| 38 | 38 | * |
| 39 | 39 | * @return string The URL with the params removed. |
| 40 | 40 | */ |
@@ -55,7 +55,7 @@ discard block |
||
| 55 | 55 | public function __construct($headers, $body, $httpStatusCode = null) |
| 56 | 56 | { |
| 57 | 57 | if (is_numeric($httpStatusCode)) { |
| 58 | - $this->httpResponseCode = (int)$httpStatusCode; |
|
| 58 | + $this->httpResponseCode = (int) $httpStatusCode; |
|
| 59 | 59 | } |
| 60 | 60 | |
| 61 | 61 | if (is_array($headers)) { |
@@ -105,7 +105,7 @@ discard block |
||
| 105 | 105 | public function setHttpResponseCodeFromHeader($rawResponseHeader) |
| 106 | 106 | { |
| 107 | 107 | preg_match('|HTTP/\d\.\d\s+(\d+)\s+.*|', $rawResponseHeader, $match); |
| 108 | - $this->httpResponseCode = (int)$match[1]; |
|
| 108 | + $this->httpResponseCode = (int) $match[1]; |
|
| 109 | 109 | } |
| 110 | 110 | |
| 111 | 111 | /** |
@@ -66,7 +66,7 @@ discard block |
||
| 66 | 66 | return $this->protocolWithActiveSsl($protocol); |
| 67 | 67 | } |
| 68 | 68 | |
| 69 | - return (string)$this->getServerVar('SERVER_PORT') === '443'; |
|
| 69 | + return (string) $this->getServerVar('SERVER_PORT') === '443'; |
|
| 70 | 70 | } |
| 71 | 71 | |
| 72 | 72 | /** |
@@ -78,7 +78,7 @@ discard block |
||
| 78 | 78 | */ |
| 79 | 79 | protected function protocolWithActiveSsl($protocol) |
| 80 | 80 | { |
| 81 | - $protocol = strtolower((string)$protocol); |
|
| 81 | + $protocol = strtolower((string) $protocol); |
|
| 82 | 82 | |
| 83 | 83 | return in_array($protocol, ['on', '1', 'https', 'ssl'], true); |
| 84 | 84 | } |
@@ -126,15 +126,15 @@ discard block |
||
| 126 | 126 | // Check for proxy first |
| 127 | 127 | $port = $this->getHeader('X_FORWARDED_PORT'); |
| 128 | 128 | if ($port) { |
| 129 | - return (string)$port; |
|
| 129 | + return (string) $port; |
|
| 130 | 130 | } |
| 131 | 131 | |
| 132 | - $protocol = (string)$this->getHeader('X_FORWARDED_PROTO'); |
|
| 132 | + $protocol = (string) $this->getHeader('X_FORWARDED_PROTO'); |
|
| 133 | 133 | if ($protocol === 'https') { |
| 134 | 134 | return '443'; |
| 135 | 135 | } |
| 136 | 136 | |
| 137 | - return (string)$this->getServerVar('SERVER_PORT'); |
|
| 137 | + return (string) $this->getServerVar('SERVER_PORT'); |
|
| 138 | 138 | } |
| 139 | 139 | |
| 140 | 140 | /** |
@@ -128,7 +128,7 @@ |
||
| 128 | 128 | */ |
| 129 | 129 | public function asArray() |
| 130 | 130 | { |
| 131 | - return array_map(function ($value) { |
|
| 131 | + return array_map(function($value) { |
|
| 132 | 132 | return $value instanceof Collection ? $value->asArray() : $value; |
| 133 | 133 | }, $this->items); |
| 134 | 134 | } |
@@ -84,7 +84,7 @@ |
||
| 84 | 84 | { |
| 85 | 85 | $items = $this->asArray(); |
| 86 | 86 | |
| 87 | - return array_map(function ($v) { |
|
| 87 | + return array_map(function($v) { |
|
| 88 | 88 | if ($v instanceof \DateTime) { |
| 89 | 89 | return $v->format(\DateTime::ISO8601); |
| 90 | 90 | } |