Completed
Push — master ( b735c6...dbf868 )
by
unknown
17s queued 13s
created
Classes/Hooks/ItemsProcFunc.php 1 patch
Braces   +4 added lines, -8 removed lines patch added patch discarded remove patch
@@ -28,8 +28,7 @@  discard block
 block discarded – undo
28 28
  * @subpackage dlf
29 29
  * @access public
30 30
  */
31
-class ItemsProcFunc implements LoggerAwareInterface
32
-{
31
+class ItemsProcFunc implements LoggerAwareInterface {
33 32
     use LoggerAwareTrait;
34 33
 
35 34
     /**
@@ -46,8 +45,7 @@  discard block
 block discarded – undo
46 45
      *
47 46
      * @return void
48 47
      */
49
-    public function toolList(&$params)
50
-    {
48
+    public function toolList(&$params) {
51 49
         foreach ($GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['dlf/Classes/Plugin/Toolbox.php']['tools'] as $class => $label) {
52 50
             $params['items'][] = [Helper::getLanguageService()->sL($label), $class];
53 51
         }
@@ -97,8 +95,7 @@  discard block
 block discarded – undo
97 95
      *
98 96
      * @return void
99 97
      */
100
-    public function extendedSearchList(&$params)
101
-    {
98
+    public function extendedSearchList(&$params) {
102 99
         $this->generateList(
103 100
             $params,
104 101
             'label,index_name',
@@ -139,8 +136,7 @@  discard block
 block discarded – undo
139 136
      *
140 137
      * @return void
141 138
      */
142
-    protected function generateList(&$params, $fields, $table, $sorting, $andWhere = '')
143
-    {
139
+    protected function generateList(&$params, $fields, $table, $sorting, $andWhere = '') {
144 140
         $this->getTyposcriptConfigFromPluginSiteRoot($params);
145 141
 
146 142
         $queryBuilder = GeneralUtility::makeInstance(ConnectionPool::class)
Please login to merge, or discard this patch.