@@ -37,10 +37,8 @@ |
||
| 37 | 37 | |
| 38 | 38 | /** |
| 39 | 39 | * |
| 40 | - * @param type $client - the client to process the data with |
|
| 41 | 40 | * @param object $sdkClient - the client to connect to the datasource with |
| 42 | 41 | * @param object $restClient - cleitn to process the http requests |
| 43 | - * @param type $class The entiy to work with |
|
| 44 | 42 | */ |
| 45 | 43 | public function __construct($sdkClient, $restClient, $entityName) |
| 46 | 44 | { |
@@ -178,7 +178,7 @@ discard block |
||
| 178 | 178 | } |
| 179 | 179 | $path .= '?' . http_build_query($this->convertQueryParameters($queryParams)); |
| 180 | 180 | |
| 181 | - $data = $this->restClient->get($path); |
|
| 181 | + $data = $this->restClient->get($path); |
|
| 182 | 182 | |
| 183 | 183 | |
| 184 | 184 | $hydrator = $this->sdk->getModelHydrator(); |
@@ -208,7 +208,7 @@ discard block |
||
| 208 | 208 | $sdk = $this->sdk; |
| 209 | 209 | |
| 210 | 210 | return array_map( |
| 211 | - function ($item) use ($sdk) { |
|
| 211 | + function($item) use ($sdk) { |
|
| 212 | 212 | if (is_object($item)) { |
| 213 | 213 | $mapping = $sdk->getMapping(); |
| 214 | 214 | if (method_exists($item, 'getId')) { |
@@ -42,7 +42,7 @@ discard block |
||
| 42 | 42 | /** |
| 43 | 43 | * setMapping |
| 44 | 44 | * |
| 45 | - * @param array $mapping |
|
| 45 | + * @param Mapping\ClassMetadata[] $mapping |
|
| 46 | 46 | * @access public |
| 47 | 47 | * @return Mapping |
| 48 | 48 | */ |
@@ -88,7 +88,7 @@ discard block |
||
| 88 | 88 | * |
| 89 | 89 | * @param string $id |
| 90 | 90 | * @access public |
| 91 | - * @return void |
|
| 91 | + * @return string |
|
| 92 | 92 | */ |
| 93 | 93 | public function getKeyFromId($id) |
| 94 | 94 | { |
@@ -104,7 +104,7 @@ discard block |
||
| 104 | 104 | * |
| 105 | 105 | * @param string $modelName model name |
| 106 | 106 | * @access public |
| 107 | - * @return void |
|
| 107 | + * @return string |
|
| 108 | 108 | */ |
| 109 | 109 | public function getKeyFromModel($modelName) |
| 110 | 110 | { |
@@ -199,7 +199,7 @@ discard block |
||
| 199 | 199 | /** |
| 200 | 200 | * removePrefix |
| 201 | 201 | * |
| 202 | - * @param mixed $value |
|
| 202 | + * @param string $value |
|
| 203 | 203 | * @access private |
| 204 | 204 | * @return string |
| 205 | 205 | */ |
@@ -76,7 +76,7 @@ |
||
| 76 | 76 | public function getMappingKeys() |
| 77 | 77 | { |
| 78 | 78 | return array_map( |
| 79 | - function ($mapping) { |
|
| 79 | + function($mapping) { |
|
| 80 | 80 | return $mapping->getKey(); |
| 81 | 81 | }, |
| 82 | 82 | $this->mapping |
@@ -191,9 +191,9 @@ |
||
| 191 | 191 | /** |
| 192 | 192 | * getPropertyAnnotation |
| 193 | 193 | * |
| 194 | - * @param mixed $reader |
|
| 195 | - * @param mixed $property |
|
| 196 | - * @param mixed $classname |
|
| 194 | + * @param FileCacheReader $reader |
|
| 195 | + * @param \ReflectionProperty $property |
|
| 196 | + * @param string $classname |
|
| 197 | 197 | * @access private |
| 198 | 198 | * @return void |
| 199 | 199 | */ |
@@ -76,7 +76,7 @@ discard block |
||
| 76 | 76 | |
| 77 | 77 | foreach ($iterator as $file) { |
| 78 | 78 | $sourceFile = $file[0]; |
| 79 | - if (! preg_match('(^phar:)i', $sourceFile)) { |
|
| 79 | + if (!preg_match('(^phar:)i', $sourceFile)) { |
|
| 80 | 80 | $sourceFile = realpath($sourceFile); |
| 81 | 81 | } |
| 82 | 82 | |
@@ -114,7 +114,7 @@ discard block |
||
| 114 | 114 | { |
| 115 | 115 | $metadata = $this->getClassMetadataForClassname($classname); |
| 116 | 116 | |
| 117 | - return $metadata ? [$metadata,] : []; |
|
| 117 | + return $metadata ? [$metadata, ] : []; |
|
| 118 | 118 | } |
| 119 | 119 | |
| 120 | 120 | /** |
@@ -79,7 +79,7 @@ discard block |
||
| 79 | 79 | * @param array $data |
| 80 | 80 | * @param string $modelName |
| 81 | 81 | * @access public |
| 82 | - * @return array |
|
| 82 | + * @return HydraCollection |
|
| 83 | 83 | */ |
| 84 | 84 | public function hydrateList($data, $modelName) |
| 85 | 85 | { |
@@ -92,6 +92,9 @@ discard block |
||
| 92 | 92 | return new HydraCollection(); |
| 93 | 93 | } |
| 94 | 94 | |
| 95 | + /** |
|
| 96 | + * @param string $modelName |
|
| 97 | + */ |
|
| 95 | 98 | public function deserializeAll($data, $modelName) |
| 96 | 99 | { |
| 97 | 100 | $data['hydra:member'] = array_map( |
@@ -33,13 +33,13 @@ |
||
| 33 | 33 | } |
| 34 | 34 | |
| 35 | 35 | /** |
| 36 | - * convertId |
|
| 37 | - * |
|
| 38 | - * @param string $id |
|
| 39 | - * @param string $modelName |
|
| 40 | - * @access public |
|
| 41 | - * @return string |
|
| 42 | - */ |
|
| 36 | + * convertId |
|
| 37 | + * |
|
| 38 | + * @param string $id |
|
| 39 | + * @param string $modelName |
|
| 40 | + * @access public |
|
| 41 | + * @return string |
|
| 42 | + */ |
|
| 43 | 43 | public function convertId($id, $modelName) |
| 44 | 44 | { |
| 45 | 45 | // add slash if needed to have a valid hydra id |
@@ -95,7 +95,7 @@ |
||
| 95 | 95 | public function deserializeAll($data, $modelName) |
| 96 | 96 | { |
| 97 | 97 | $data['hydra:member'] = array_map( |
| 98 | - function ($member) use ($modelName) { |
|
| 98 | + function($member) use ($modelName) { |
|
| 99 | 99 | return $this->deserialize($member, $modelName); |
| 100 | 100 | }, |
| 101 | 101 | $data['hydra:member'] |
@@ -209,11 +209,11 @@ |
||
| 209 | 209 | /** |
| 210 | 210 | * logRequest |
| 211 | 211 | * |
| 212 | - * @param mixed $startTime |
|
| 213 | - * @param mixed $method |
|
| 214 | - * @param mixed $url |
|
| 212 | + * @param double|null $startTime |
|
| 213 | + * @param string $method |
|
| 214 | + * @param string $url |
|
| 215 | 215 | * @param mixed $parameters |
| 216 | - * @param mixed $response |
|
| 216 | + * @param \Psr\Http\Message\ResponseInterface $response |
|
| 217 | 217 | * @access private |
| 218 | 218 | * @return void |
| 219 | 219 | */ |
@@ -53,7 +53,7 @@ discard block |
||
| 53 | 53 | public function __construct(ClientInterface $httpClient, $baseUrl = null) |
| 54 | 54 | { |
| 55 | 55 | $this->httpClient = $httpClient; |
| 56 | - $this->baseUrl = substr($baseUrl, -1) === '/' ? substr($baseUrl, 0, -1) : $baseUrl; |
|
| 56 | + $this->baseUrl = substr($baseUrl, -1) === '/' ? substr($baseUrl, 0, -1) : $baseUrl; |
|
| 57 | 57 | |
| 58 | 58 | $this->logHistory = false; |
| 59 | 59 | $this->requestHistory = []; |
@@ -188,7 +188,7 @@ discard block |
||
| 188 | 188 | $headers = $response->getHeaders(); |
| 189 | 189 | $jsonContentTypeList = ['application/ld+json', 'application/json']; |
| 190 | 190 | |
| 191 | - $requestIsJson = false; |
|
| 191 | + $requestIsJson = false; |
|
| 192 | 192 | |
| 193 | 193 | if (isset($headers['Content-Type'])) { |
| 194 | 194 | foreach ($jsonContentTypeList as $contentType) { |
@@ -24,7 +24,7 @@ discard block |
||
| 24 | 24 | |
| 25 | 25 | /** |
| 26 | 26 | * Constructor |
| 27 | - * @param ClientInterface $restClient |
|
| 27 | + * @param RestClient $restClient |
|
| 28 | 28 | */ |
| 29 | 29 | public function __construct(RestClient $restClient, Mapping $mapping, Serializer $serializer = null) |
| 30 | 30 | { |
@@ -113,7 +113,7 @@ discard block |
||
| 113 | 113 | * |
| 114 | 114 | * @param string $id |
| 115 | 115 | * @access public |
| 116 | - * @return object |
|
| 116 | + * @return \ProxyManager\Proxy\GhostObjectInterface |
|
| 117 | 117 | */ |
| 118 | 118 | public function createProxy($id) |
| 119 | 119 | { |
@@ -125,8 +125,8 @@ discard block |
||
| 125 | 125 | $sdk = $this; |
| 126 | 126 | |
| 127 | 127 | $factory = new LazyLoadingGhostFactory(); |
| 128 | - $initializer = function ( |
|
| 129 | - LazyLoadingInterface &$proxy, |
|
| 128 | + $initializer = function( |
|
| 129 | + LazyLoadingInterface&$proxy, |
|
| 130 | 130 | $method, |
| 131 | 131 | array $parameters, |
| 132 | 132 | & $initializer |
@@ -136,7 +136,7 @@ discard block |
||
| 136 | 136 | $id |
| 137 | 137 | ) { |
| 138 | 138 | if ($method !== 'getId' && $method !== 'setId' && $method !== 'jsonSerialize') { |
| 139 | - $initializer = null; // disable initialization |
|
| 139 | + $initializer = null; // disable initialization |
|
| 140 | 140 | |
| 141 | 141 | // load data and modify the object here |
| 142 | 142 | if ($id) { |
@@ -15,7 +15,6 @@ discard block |
||
| 15 | 15 | /** |
| 16 | 16 | * testFind |
| 17 | 17 | * |
| 18 | - * @param mixed $method |
|
| 19 | 18 | * @access public |
| 20 | 19 | * @return void |
| 21 | 20 | */ |
@@ -91,7 +90,6 @@ discard block |
||
| 91 | 90 | /** |
| 92 | 91 | * testFindNotFound |
| 93 | 92 | * |
| 94 | - * @param mixed $method |
|
| 95 | 93 | * @access public |
| 96 | 94 | * @return void |
| 97 | 95 | */ |
@@ -202,7 +202,7 @@ |
||
| 202 | 202 | * getMappingArray |
| 203 | 203 | * |
| 204 | 204 | * @access private |
| 205 | - * @return void |
|
| 205 | + * @return ClassMetadata[] |
|
| 206 | 206 | */ |
| 207 | 207 | private function getMappingArray() |
| 208 | 208 | { |
@@ -24,7 +24,7 @@ discard block |
||
| 24 | 24 | ->given($this->newTestedInstance) |
| 25 | 25 | ->and($this->testedInstance->setMapping([new ClassMetadata('foo', null, null)])) |
| 26 | 26 | ->then($testedInstance = $this->testedInstance) |
| 27 | - ->exception(function () use ($testedInstance) { |
|
| 27 | + ->exception(function() use ($testedInstance) { |
|
| 28 | 28 | @$testedInstance->getModelName(); |
| 29 | 29 | }) |
| 30 | 30 | ->isInstanceOf('Mapado\RestClientSdk\Exception\MappingException') |
@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | ->given($this->newTestedInstance) |
| 35 | 35 | ->and($this->testedInstance->setMapping([new ClassMetadata('foo', null, null)])) |
| 36 | 36 | ->then($testedInstance = $this->testedInstance) |
| 37 | - ->exception(function () use ($testedInstance) { |
|
| 37 | + ->exception(function() use ($testedInstance) { |
|
| 38 | 38 | $testedInstance->getModelName('orders'); |
| 39 | 39 | }) |
| 40 | 40 | ->isInstanceOf('Mapado\RestClientSdk\Exception\MappingException') |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | ->given($this->newTestedInstance) |
| 45 | 45 | ->and($this->testedInstance->setMapping([new ClassMetadata('orders', null, null)])) |
| 46 | 46 | ->then($testedInstance = $this->testedInstance) |
| 47 | - ->exception(function () use ($testedInstance) { |
|
| 47 | + ->exception(function() use ($testedInstance) { |
|
| 48 | 48 | $testedInstance->getModelName('orders'); |
| 49 | 49 | }) |
| 50 | 50 | ->isInstanceOf('Mapado\RestClientSdk\Exception\MappingException') |
@@ -92,7 +92,7 @@ discard block |
||
| 92 | 92 | // no mappings |
| 93 | 93 | ->given($this->newTestedInstance) |
| 94 | 94 | ->then($testedInstance = $this->testedInstance) |
| 95 | - ->exception(function () use ($testedInstance) { |
|
| 95 | + ->exception(function() use ($testedInstance) { |
|
| 96 | 96 | $testedInstance->getKeyFromId('/orders/8'); |
| 97 | 97 | }) |
| 98 | 98 | ->isInstanceOf('Mapado\RestClientSdk\Exception\MappingException') |
@@ -141,7 +141,7 @@ discard block |
||
| 141 | 141 | ->isEqualTo('order_items') |
| 142 | 142 | |
| 143 | 143 | ->then($testedInstance = $this->testedInstance) |
| 144 | - ->exception(function () use ($testedInstance) { |
|
| 144 | + ->exception(function() use ($testedInstance) { |
|
| 145 | 145 | $testedInstance->getKeyFromModel('\Not\Viable\Classname'); |
| 146 | 146 | }) |
| 147 | 147 | ->isInstanceOf('Mapado\RestClientSdk\Exception\MappingException') |
@@ -167,7 +167,7 @@ discard block |
||
| 167 | 167 | ->isInstanceOf('Mapado\RestClientSdk\Mapping\ClassMetadata') |
| 168 | 168 | |
| 169 | 169 | ->then |
| 170 | - ->exception(function () use ($testedInstance) { |
|
| 170 | + ->exception(function() use ($testedInstance) { |
|
| 171 | 171 | $testedInstance->getClassMetadata('Foo\Bar'); |
| 172 | 172 | }) |
| 173 | 173 | ->isInstanceOf('Mapado\RestClientSdk\Exception\MappingException') |
@@ -224,6 +224,6 @@ discard block |
||
| 224 | 224 | 'Foo\Bar\Client\ClientClient' |
| 225 | 225 | ); |
| 226 | 226 | |
| 227 | - return [ $order, $orderItem, $client, ]; |
|
| 227 | + return [$order, $orderItem, $client, ]; |
|
| 228 | 228 | } |
| 229 | 229 | } |
@@ -154,7 +154,7 @@ |
||
| 154 | 154 | |
| 155 | 155 | public function addCartItemList($cartItem) |
| 156 | 156 | { |
| 157 | - $this->cartItemList[] = $cartItem; |
|
| 157 | + $this->cartItemList[] = $cartItem; |
|
| 158 | 158 | } |
| 159 | 159 | |
| 160 | 160 | /** |