Completed
Push — master ( b08fc7...3fe51b )
by Robbie
25s queued 11s
created
src/Model/ResourceFilter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,10 +42,10 @@
 block discarded – undo
42 42
 
43 43
     public function getCMSFields()
44 44
     {
45
-        $this->beforeUpdateCMSFields(function (FieldList $fields) {
45
+        $this->beforeUpdateCMSFields(function(FieldList $fields) {
46 46
             $fields->push(ListboxField::create(
47 47
                 'FilterFields',
48
-                _t(__CLASS__ . '.ColumnsToSearch', 'Columns to search'),
48
+                _t(__CLASS__.'.ColumnsToSearch', 'Columns to search'),
49 49
                 $this->FilterFor()->Fields()->map('ID', 'ReadableName')
50 50
             ));
51 51
 
Please login to merge, or discard this patch.
src/Model/ResourceFilter/Dropdown.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,10 +24,10 @@
 block discarded – undo
24 24
 
25 25
     public function getCMSFields()
26 26
     {
27
-        $this->beforeUpdateCMSFields(function (FieldList $fields) {
27
+        $this->beforeUpdateCMSFields(function(FieldList $fields) {
28 28
             $fields->push(TextField::create(
29 29
                 'Options',
30
-                _t(__CLASS__ . '.Options', 'Dropdown options')
30
+                _t(__CLASS__.'.Options', 'Dropdown options')
31 31
             ));
32 32
         });
33 33
 
Please login to merge, or discard this patch.