Passed
Push — master ( a29f4d...f7b9bb )
by Ferry
04:48 queued 01:10
created
src/controllers/traits/ControllerSetting.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -29,11 +29,11 @@  discard block
 block discarded – undo
29 29
         $this->setButtonDetail(true);
30 30
         $this->setButtonSave(true);
31 31
         $this->setButtonLimitPage(true);
32
-        $this->hideButtonDeleteWhen(function ($row) { return false; });
33
-        $this->hideButtonDetailWhen(function ($row) { return false; });
34
-        $this->hideButtonEditWhen(function ($row) { return false; });
35
-        $this->style(function () { return null; });
36
-        $this->javascript(function () { return null; });
32
+        $this->hideButtonDeleteWhen(function($row) { return false; });
33
+        $this->hideButtonDetailWhen(function($row) { return false; });
34
+        $this->hideButtonEditWhen(function($row) { return false; });
35
+        $this->style(function() { return null; });
36
+        $this->javascript(function() { return null; });
37 37
     }
38 38
 
39 39
     public function style(callable $style) {
@@ -137,9 +137,9 @@  discard block
 block discarded – undo
137 137
      * @param ButtonColor $color
138 138
      * @param string $attributes
139 139
      */
140
-    public function addIndexActionButton($label, $actionURL, $fontAwesome_icon=null, $color=null, $attributes = null)
140
+    public function addIndexActionButton($label, $actionURL, $fontAwesome_icon = null, $color = null, $attributes = null)
141 141
     {
142
-        $color = ($color)?:ButtonColor::DARK_BLUE;
142
+        $color = ($color) ?: ButtonColor::DARK_BLUE;
143 143
 
144 144
         $model = new IndexActionButtonModel();
145 145
         $model->setLabel($label);
@@ -194,12 +194,12 @@  discard block
 block discarded – undo
194 194
      * @param $fontAwesome_icon
195 195
      * @param ButtonColor|string $color
196 196
      */
197
-    public function addActionButton($label, $url_target, $condition_callback=null, $fontAwesome_icon=null, $color=null, $confirmation = false)
197
+    public function addActionButton($label, $url_target, $condition_callback = null, $fontAwesome_icon = null, $color = null, $confirmation = false)
198 198
     {
199 199
         $new = new AddActionButtonModel();
200 200
         $new->setLabel($label);
201
-        $new->setIcon($fontAwesome_icon?:"fa fa-bars");
202
-        $new->setColor($color?:"primary");
201
+        $new->setIcon($fontAwesome_icon ?: "fa fa-bars");
202
+        $new->setColor($color ?: "primary");
203 203
         $new->setUrl($url_target);
204 204
         $new->setCondition($condition_callback);
205 205
         $new->setConfirmation($confirmation);
Please login to merge, or discard this patch.