Completed
Push — master ( 2c9eb7...831acd )
by Fabien
06:26 queued 03:08
created
Classes/Tool/RelationAnalyserTool.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@
 block discarded – undo
84 84
      */
85 85
     public function isShown()
86 86
     {
87
-        return $this->getBackendUser()->isAdmin();# && GeneralUtility::getApplicationContext()->isDevelopment();
87
+        return $this->getBackendUser()->isAdmin(); # && GeneralUtility::getApplicationContext()->isDevelopment();
88 88
     }
89 89
 
90 90
     /**
Please login to merge, or discard this patch.
Classes/Converter/Property.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,8 +57,7 @@
 block discarded – undo
57 57
     {
58 58
         // Resolve the table name.
59 59
         self::$currentTable = $tableNameOrContentObject instanceof Content ?
60
-            $tableNameOrContentObject->getDataType() :
61
-            $tableNameOrContentObject;
60
+            $tableNameOrContentObject->getDataType() : $tableNameOrContentObject;
62 61
         return $this;
63 62
     }
64 63
 
Please login to merge, or discard this patch.
ext_emconf.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
 * https://github.com/t3elmar/Ext
9 9
 *********************************************************************/
10 10
 
11
-$EM_CONF[$_EXTKEY] = array (
11
+$EM_CONF[$_EXTKEY] = array(
12 12
   'title' => 'Versatile and Interactive Display - List Component',
13 13
   'description' => 'Generic listing of records with versatile ways of interacting with the data, e.g. advanced filter, inline editing, mass editing, ... Veni, vidi, vici!',
14 14
   'category' => 'module',
@@ -21,18 +21,18 @@  discard block
 block discarded – undo
21 21
   'clearCacheOnLoad' => 0,
22 22
   'version' => '2.1.0-dev',
23 23
   'constraints' =>
24
-  array (
24
+  array(
25 25
     'depends' =>
26
-    array (
26
+    array(
27 27
       'cms' => '',
28 28
       'fluid' => '',
29 29
       'typo3' => '7.5.0-7.99.99',
30 30
     ),
31 31
     'conflicts' =>
32
-    array (
32
+    array(
33 33
     ),
34 34
     'suggests' =>
35
-    array (
35
+    array(
36 36
     ),
37 37
   )
38 38
 );
Please login to merge, or discard this patch.
Classes/Converter/Field.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,8 +57,7 @@
 block discarded – undo
57 57
     {
58 58
         // Resolve the table name.
59 59
         self::$currentTable = $tableNameOrContentObject instanceof Content ?
60
-            $tableNameOrContentObject->getDataType() :
61
-            $tableNameOrContentObject;
60
+            $tableNameOrContentObject->getDataType() : $tableNameOrContentObject;
62 61
         return $this;
63 62
     }
64 63
 
Please login to merge, or discard this patch.