Completed
Push — master ( fdd9ad...2548bf )
by Sam
11:48
created
src/Forms/PrintableTransformation_TabSet.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 class PrintableTransformation_TabSet extends TabSet
9 9
 {
10 10
     /**
11
-     * @param array $tabs
11
+     * @param FieldList $tabs
12 12
      */
13 13
     public function __construct($tabs)
14 14
     {
Please login to merge, or discard this patch.
src/Forms/TextField.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@
 block discarded – undo
79 79
     }
80 80
 
81 81
     /**
82
-     * @return string
82
+     * @return \SilverStripe\ORM\FieldType\DBHTMLText
83 83
      */
84 84
     public function InternallyLabelledField()
85 85
     {
Please login to merge, or discard this patch.
src/ORM/ArrayLib.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -178,7 +178,7 @@
 block discarded – undo
178 178
      *
179 179
      * Actually only one array argument is supported.
180 180
      *
181
-     * @param $f callback to apply
181
+     * @param string $f callback to apply
182 182
      * @param $array array
183 183
      * @return array
184 184
      */
Please login to merge, or discard this patch.
src/ORM/ArrayList.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -745,7 +745,7 @@
 block discarded – undo
745 745
     /**
746 746
      * Returns item stored in list with index $key
747 747
      *
748
-     * @param mixed $offset
748
+     * @param integer $offset
749 749
      * @return DataObject
750 750
      */
751 751
     public function offsetGet($offset)
Please login to merge, or discard this patch.
src/ORM/Connect/Database.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -768,7 +768,7 @@
 block discarded – undo
768 768
      * @param boolean $create Flag indicating whether the database should be created
769 769
      * if it doesn't exist. If $create is false and the database doesn't exist
770 770
      * then an error will be raised
771
-     * @param int|boolean $errorLevel The level of error reporting to enable for the query, or false if no error
771
+     * @param boolean $errorLevel The level of error reporting to enable for the query, or false if no error
772 772
      * should be raised
773 773
      * @return boolean Flag indicating success
774 774
      */
Please login to merge, or discard this patch.
src/ORM/Connect/DBSchemaManager.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -331,7 +331,7 @@  discard block
 block discarded – undo
331 331
      *   - array('fields' => array('A','B','C'), 'type' => 'index/unique/fulltext'): This gives you full
332 332
      *     control over the index.
333 333
      * @param boolean $hasAutoIncPK A flag indicating that the primary key on this table is an autoincrement type
334
-     * @param array $options Create table options (ENGINE, etc.)
334
+     * @param string|null $options Create table options (ENGINE, etc.)
335 335
      * @param array|bool $extensions List of extensions
336 336
      */
337 337
     public function requireTable(
@@ -529,7 +529,7 @@  discard block
 block discarded – undo
529 529
     /**
530 530
      * Given an index spec determines the index type
531 531
      *
532
-     * @param array|string $spec
532
+     * @param string $spec
533 533
      * @return string
534 534
      */
535 535
     protected function determineIndexType($spec)
@@ -630,7 +630,7 @@  discard block
 block discarded – undo
630 630
      *
631 631
      * @param string $table The table name.
632 632
      * @param string $field The field name.
633
-     * @param array|string $spec The field specification. If passed in array syntax, the specific database
633
+     * @param string $spec The field specification. If passed in array syntax, the specific database
634 634
      *  driver takes care of the ALTER TABLE syntax. If passed as a string, its assumed to
635 635
      *  be prepared as a direct SQL framgment ready for insertion into ALTER TABLE. In this case you'll
636 636
      *  need to take care of database abstraction in your DBField subclass.
Please login to merge, or discard this patch.
src/ORM/Connect/MySQLSchemaManager.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -129,6 +129,9 @@
 block discarded – undo
129 129
         $this->query("ALTER TABLE \"$tableName\" $alterations");
130 130
     }
131 131
 
132
+    /**
133
+     * @param string $tableName
134
+     */
132 135
     public function isView($tableName)
133 136
     {
134 137
         $info = $this->query("SHOW /*!50002 FULL*/ TABLES LIKE '$tableName'")->record();
Please login to merge, or discard this patch.
src/ORM/DatabaseAdmin.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
     /**
144 144
      * Gets the url to return to after build
145 145
      *
146
-     * @return string|null
146
+     * @return string
147 147
      */
148 148
     protected function getReturnURL()
149 149
     {
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
     /**
176 176
      * Returns the timestamp of the time that the database was last built
177 177
      *
178
-     * @return string Returns the timestamp of the time that the database was
178
+     * @return integer|null Returns the timestamp of the time that the database was
179 179
      *                last built
180 180
      */
181 181
     public static function lastBuilt()
Please login to merge, or discard this patch.
src/ORM/DataObject.php 1 patch
Doc Comments   +7 added lines, -6 removed lines patch added patch discarded remove patch
@@ -2470,6 +2470,7 @@  discard block
 block discarded – undo
2470 2470
 
2471 2471
     /**
2472 2472
      * {@inheritdoc}
2473
+     * @param string $field
2473 2474
      */
2474 2475
     public function castingHelper($field)
2475 2476
     {
@@ -2638,7 +2639,7 @@  discard block
 block discarded – undo
2638 2639
 
2639 2640
     /**
2640 2641
      * @param Member $member
2641
-     * @return boolean
2642
+     * @return boolean|string
2642 2643
      */
2643 2644
     public function canView($member = null)
2644 2645
     {
@@ -2651,7 +2652,7 @@  discard block
 block discarded – undo
2651 2652
 
2652 2653
     /**
2653 2654
      * @param Member $member
2654
-     * @return boolean
2655
+     * @return boolean|string
2655 2656
      */
2656 2657
     public function canEdit($member = null)
2657 2658
     {
@@ -2664,7 +2665,7 @@  discard block
 block discarded – undo
2664 2665
 
2665 2666
     /**
2666 2667
      * @param Member $member
2667
-     * @return boolean
2668
+     * @return boolean|string
2668 2669
      */
2669 2670
     public function canDelete($member = null)
2670 2671
     {
@@ -2679,7 +2680,7 @@  discard block
 block discarded – undo
2679 2680
      * @param Member $member
2680 2681
      * @param array $context Additional context-specific data which might
2681 2682
      * affect whether (or where) this object could be created.
2682
-     * @return boolean
2683
+     * @return boolean|string
2683 2684
      */
2684 2685
     public function canCreate($member = null, $context = array())
2685 2686
     {
@@ -2789,7 +2790,7 @@  discard block
 block discarded – undo
2789 2790
      * Traverses to a field referenced by relationships between data objects, returning the value
2790 2791
      * The path to the related field is specified with dot separated syntax (eg: Parent.Child.Child.FieldName)
2791 2792
      *
2792
-     * @param $fieldName string
2793
+     * @param string $fieldName string
2793 2794
      * @return string | null - will return null on a missing value
2794 2795
      */
2795 2796
     public function relField($fieldName)
@@ -2867,7 +2868,7 @@  discard block
 block discarded – undo
2867 2868
      * @param string $callerClass The class of objects to be returned
2868 2869
      * @param string|array $filter A filter to be inserted into the WHERE clause.
2869 2870
      * Supports parameterised queries. See SQLSelect::addWhere() for syntax examples.
2870
-     * @param string|array $sort A sort expression to be inserted into the ORDER
2871
+     * @param string $sort A sort expression to be inserted into the ORDER
2871 2872
      * BY clause.  If omitted, self::$default_sort will be used.
2872 2873
      * @param string $join Deprecated 3.0 Join clause. Use leftJoin($table, $joinClause) instead.
2873 2874
      * @param string|array $limit A limit expression to be inserted into the LIMIT clause.
Please login to merge, or discard this patch.