Completed
Pull Request — master (#7055)
by Robbie
11:00
created
src/ORM/DataObjectSchema.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -488,7 +488,7 @@
 block discarded – undo
488 488
     /**
489 489
      * Cache all indexes for the given class. Will do nothing if already cached.
490 490
      *
491
-     * @param $class
491
+     * @param string $class
492 492
      */
493 493
     protected function cacheDatabaseIndexes($class)
494 494
     {
Please login to merge, or discard this patch.
src/ORM/FieldType/DBField.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -609,7 +609,7 @@  discard block
 block discarded – undo
609 609
     }
610 610
 
611 611
     /**
612
-     * @param array $value
612
+     * @param string $value
613 613
      * @return $this
614 614
      */
615 615
     public function setArrayValue($value)
@@ -631,7 +631,7 @@  discard block
 block discarded – undo
631 631
     /**
632 632
      * Get the field(s) that should be used if this field is indexed
633 633
      *
634
-     * @return array
634
+     * @return string[]
635 635
      */
636 636
     public function getIndexSpecs()
637 637
     {
Please login to merge, or discard this patch.
src/ORM/FieldType/DBString.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -23,6 +23,7 @@
 block discarded – undo
23 23
      * Set the default vaue for "nullify empty"
24 24
      *
25 25
      * {@inheritDoc}
26
+     * @param string $name
26 27
      */
27 28
     public function __construct($name = null, $options = [])
28 29
     {
Please login to merge, or discard this patch.