Completed
Push — 2.2 ( 9f0973...1cb03b )
by
unknown
08:18
created
src/AbstractZohoDao.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -305,7 +305,7 @@
 block discarded – undo
305 305
     }
306 306
 
307 307
     /**
308
-     * @param  $fieldName
308
+     * @param  string $fieldName
309 309
      * @return null|Field
310 310
      */
311 311
     public function getFieldFromFieldName($fieldName)
Please login to merge, or discard this patch.
src/Service/EntitiesGeneratorService.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -488,6 +488,9 @@  discard block
 block discarded – undo
488 488
         }
489 489
     }
490 490
 
491
+    /**
492
+     * @param string $str
493
+     */
491 494
     private static function camelCase($str, array $noStrip = [])
492 495
     {
493 496
         $str = self::upperCamelCase($str, $noStrip);
@@ -508,6 +511,11 @@  discard block
 block discarded – undo
508 511
         return $str;
509 512
     }
510 513
 
514
+    /**
515
+     * @param string|null $name
516
+     * @param string $description
517
+     * @param string $type
518
+     */
511 519
     private static function registerProperty(PhpClass $class, $name, $description, $type, $nullable = false)
512 520
     {
513 521
         if (!$class->hasProperty($name)) {
Please login to merge, or discard this patch.