Completed
Push — master ( ed6a4c...a3a62e )
by James Ekow Abaka
03:18
created
src/RecordWrapper.php 1 patch
Doc Comments   +9 added lines, -2 removed lines patch added patch discarded remove patch
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
 
147 147
     /**
148 148
      * @method
149
-     * @param type $name
149
+     * @param string $name
150 150
      * @param type $arguments
151 151
      * @return type
152 152
      */
@@ -176,6 +176,10 @@  discard block
 block discarded – undo
176 176
         return $this->retrieveItem($name);
177 177
     }
178 178
 
179
+    /**
180
+     * @param Relationship[] $relationships
181
+     * @param integer $depth
182
+     */
179 183
     private function expandArrayValue($array, $relationships, $depth, $index = null) {
180 184
         foreach ($relationships as $name => $relationship) {
181 185
             $array[$name] = $this->fetchRelatedFields($relationship, $index)->toArray($depth);
@@ -336,6 +340,9 @@  discard block
 block discarded – undo
336 340
         
337 341
     }
338 342
 
343
+    /**
344
+     * @param string $id
345
+     */
339 346
     public function postSaveCallback($id) {
340 347
         
341 348
     }
@@ -360,7 +367,7 @@  discard block
 block discarded – undo
360 367
     
361 368
     /**
362 369
      * 
363
-     * @return DataAdapter
370
+     * @return DriverAdapter
364 371
      */
365 372
     public function getAdapter() {
366 373
         $this->initialize();
Please login to merge, or discard this patch.