Passed
Push — master ( cc2d4e...c99091 )
by Robbie
06:10
created
src/PageExtension.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -9,13 +9,13 @@  discard block
 block discarded – undo
9 9
 class PageExtension extends DataExtension
10 10
 {
11 11
 
12
-    private static $has_one = [
13
-        'ImportedFromFile' => File::class
14
-    ];
12
+	private static $has_one = [
13
+		'ImportedFromFile' => File::class
14
+	];
15 15
 
16
-    public function updateCMSFields(FieldList $fields)
17
-    {
18
-        /*
16
+	public function updateCMSFields(FieldList $fields)
17
+	{
18
+		/*
19 19
         // Currently the ToggleCompositeField plays badly with TreeDropdownField formatting.
20 20
         // Could be switched back in the future, if this is fixed.
21 21
         $fields->addFieldToTab('Root.Main',
@@ -24,10 +24,10 @@  discard block
 block discarded – undo
24 24
             ])->setHeadingLevel(4)
25 25
         );
26 26
          */
27
-        $fields->findOrMakeTab(
28
-            'Root.Import',
29
-            _t(__CLASS__ . '.ImportTab', 'Import')
30
-        );
31
-        $fields->addFieldToTab('Root.Import', SettingsField::create());
32
-    }
27
+		$fields->findOrMakeTab(
28
+			'Root.Import',
29
+			_t(__CLASS__ . '.ImportTab', 'Import')
30
+		);
31
+		$fields->addFieldToTab('Root.Import', SettingsField::create());
32
+	}
33 33
 }
Please login to merge, or discard this patch.