We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | { |
78 | 78 | $this->initTabs(); |
79 | 79 | |
80 | - $this->tabs = $this->tabs->reject(function ($tab) use ($label) { |
|
80 | + $this->tabs = $this->tabs->reject(function($tab) use ($label) { |
|
81 | 81 | return $tab->label == $label; |
82 | 82 | }); |
83 | 83 | |
@@ -86,9 +86,9 @@ discard block |
||
86 | 86 | |
87 | 87 | public function getCreateTabs() |
88 | 88 | { |
89 | - return $this->tabs->filter(function (&$tab) { |
|
89 | + return $this->tabs->filter(function(&$tab) { |
|
90 | 90 | |
91 | - $tab->fields = $tab->fields->reject(function ($field) { |
|
91 | + $tab->fields = $tab->fields->reject(function($field) { |
|
92 | 92 | return $field['method'] == 'update'; |
93 | 93 | }); |
94 | 94 | |
@@ -98,9 +98,9 @@ discard block |
||
98 | 98 | |
99 | 99 | public function getUpdateTabs() |
100 | 100 | { |
101 | - return $this->tabs->filter(function (&$tab) { |
|
101 | + return $this->tabs->filter(function(&$tab) { |
|
102 | 102 | |
103 | - $tab->fields = $tab->fields->reject(function ($field) { |
|
103 | + $tab->fields = $tab->fields->reject(function($field) { |
|
104 | 104 | return $field['method'] == 'create'; |
105 | 105 | }); |
106 | 106 |