Completed
Pull Request — master (#37)
by Thomas
02:14
created
src/Mapping/Driver/AnnotationDriver.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -191,9 +191,9 @@
 block discarded – undo
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
      */
Please login to merge, or discard this patch.
src/Model/ModelHydrator.php 2 patches
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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(
Please login to merge, or discard this patch.
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -33,13 +33,13 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
Tests/Units/Mapping.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -202,7 +202,7 @@
 block discarded – undo
202 202
      * getMappingArray
203 203
      *
204 204
      * @access private
205
-     * @return void
205
+     * @return ClassMetadata[]
206 206
      */
207 207
     private function getMappingArray()
208 208
     {
Please login to merge, or discard this patch.
Tests/Units/RestClient.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
             ->then
72 72
                 ->object($this->testedInstance->get('/not-json'))
73 73
                     ->isInstanceOf('\GuzzleHttp\Psr7\Response')
74
-           ;
74
+            ;
75 75
     }
76 76
 
77 77
     /**
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
                     ->isInstanceOf('Mapado\RestClientSdk\Exception\RestException')
111 111
                     ->hasMessage('Error while deleting resource')
112 112
                     ->hasCode(2)
113
-           ;
113
+            ;
114 114
     }
115 115
 
116 116
     /**
Please login to merge, or discard this patch.
src/Collection/HydraPaginatedCollection.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,12 +15,12 @@
 block discarded – undo
15 15
     private $firstPage = null;
16 16
 
17 17
     /**
18
-    * @var string URI of the last page
18
+     * @var string URI of the last page
19 19
      */
20 20
     private $lastPage = null;
21 21
 
22 22
     /**
23
-    * @var string URI of the next page
23
+     * @var string URI of the next page
24 24
      */
25 25
     private $nextPage = null;
26 26
 
Please login to merge, or discard this patch.
src/EntityRepository.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -278,7 +278,6 @@  discard block
 block discarded – undo
278 278
     /**
279 279
      * fetchFromCache
280 280
      *
281
-     * @param array $data
282 281
      * @access private
283 282
      * @return object
284 283
      */
@@ -301,7 +300,6 @@  discard block
 block discarded – undo
301 300
     /**
302 301
      * saveToCache
303 302
      *
304
-     * @param array $data
305 303
      * @access private
306 304
      * @return object
307 305
      */
Please login to merge, or discard this patch.
src/RestClient.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -208,9 +208,9 @@
 block discarded – undo
208 208
     /**
209 209
      * logRequest
210 210
      *
211
-     * @param mixed $startTime
212
-     * @param mixed $method
213
-     * @param mixed $url
211
+     * @param double|null $startTime
212
+     * @param string $method
213
+     * @param string $url
214 214
      * @param mixed $parameters
215 215
      * @param mixed $response
216 216
      * @access private
Please login to merge, or discard this patch.
src/SdkClient.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
 
51 51
     /**
52 52
      * Constructor
53
-     * @param ClientInterface $restClient
53
+     * @param RestClient $restClient
54 54
      */
55 55
     public function __construct(RestClient $restClient, Mapping $mapping, Serializer $serializer = null)
56 56
     {
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
      *
71 71
      * @param CacheItemPoolInterface $cacheItemPool
72 72
      * @access public
73
-     * @return EntityRepository
73
+     * @return SdkClient
74 74
      */
75 75
     public function setCacheItemPool(CacheItemPoolInterface $cacheItemPool, $cachePrefix = '')
76 76
     {
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
      * getCacheItemPool
85 85
      *
86 86
      * @access public
87
-     * @return CacheItemPool
87
+     * @return CacheItemPoolInterface
88 88
      */
89 89
     public function getCacheItemPool()
90 90
     {
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
      *
177 177
      * @param string $id
178 178
      * @access public
179
-     * @return object
179
+     * @return \ProxyManager\Proxy\GhostObjectInterface
180 180
      */
181 181
     public function createProxy($id)
182 182
     {
Please login to merge, or discard this patch.
Tests/Units/EntityRepository.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -125,7 +125,6 @@
 block discarded – undo
125 125
     /**
126 126
      * testFindWithCache
127 127
      *
128
-     * @param mixed $method
129 128
      * @access public
130 129
      * @return void
131 130
      */
Please login to merge, or discard this patch.