Completed
Pull Request — master (#1478)
by Song
02:29
created
src/Form/Field/Select.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
      *
39 39
      * @param array|callable|string $options
40 40
      *
41
-     * @return $this|mixed
41
+     * @return Select
42 42
      */
43 43
     public function options($options = [])
44 44
     {
Please login to merge, or discard this patch.
src/Layout/Content.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@
 block discarded – undo
100 100
     protected function validateBreadcrumb(array $breadcrumb)
101 101
     {
102 102
         foreach ($breadcrumb as $item) {
103
-            if (! is_array($item) || !array_has($item, 'text')) {
103
+            if (!is_array($item) || !array_has($item, 'text')) {
104 104
                 throw new  \Exception('Breadcrumb format error!');
105 105
             }
106 106
         }
Please login to merge, or discard this patch.