Passed
Pull Request — master (#123)
by
unknown
05:05
created
Classes/ExpressionLanguage/DocumentTypeFunctionProvider.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -116,12 +116,10 @@
 block discarded – undo
116 116
     {
117 117
         return new ExpressionFunction(
118 118
             'getDocumentType',
119
-            function()
120
-            {
119
+            function() {
121 120
                 // Not implemented, we only use the evaluator
122 121
             },
123
-            function($arguments, $cPid)
124
-            {
122
+            function($arguments, $cPid) {
125 123
                 /** @var RequestWrapper $requestWrapper */
126 124
                 $requestWrapper = $arguments['request'];
127 125
                 $queryParams = $requestWrapper->getQueryParams();
Please login to merge, or discard this patch.
Classes/Pagination/PageGridPagination.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -18,15 +18,13 @@
 block discarded – undo
18 18
 use TYPO3\CMS\Core\Pagination\PaginatorInterface;
19 19
 
20 20
 
21
-final class PageGridPagination implements PaginationInterface
22
-{
21
+final class PageGridPagination implements PaginationInterface {
23 22
     /**
24 23
      * @var PageGridPaginator
25 24
      */
26 25
     protected $paginator;
27 26
 
28
-    public function __construct(PaginatorInterface $paginator)
29
-    {
27
+    public function __construct(PaginatorInterface $paginator) {
30 28
         // @phpstan-ignore-next-line
31 29
         $this->paginator = $paginator;
32 30
     }
Please login to merge, or discard this patch.
Classes/Pagination/PageGridPaginator.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,8 +16,7 @@
 block discarded – undo
16 16
 
17 17
 use TYPO3\CMS\Core\Pagination\AbstractPaginator;
18 18
 
19
-final class PageGridPaginator extends AbstractPaginator
20
-{
19
+final class PageGridPaginator extends AbstractPaginator {
21 20
     /**
22 21
      * @var array
23 22
      */
Please login to merge, or discard this patch.
Classes/Controller/StatisticsController.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,8 +21,7 @@
 block discarded – undo
21 21
  *
22 22
  * @access public
23 23
  */
24
-class StatisticsController extends AbstractController
25
-{
24
+class StatisticsController extends AbstractController {
26 25
     /**
27 26
      * The main method of the plugin
28 27
      *
Please login to merge, or discard this patch.
Classes/Controller/AudioPlayerController.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,8 +24,7 @@
 block discarded – undo
24 24
  *
25 25
  * @access public
26 26
  */
27
-class AudioplayerController extends AbstractController
28
-{
27
+class AudioplayerController extends AbstractController {
29 28
     /**
30 29
      * Holds the current audio file's URL, MIME type and optional label
31 30
      *
Please login to merge, or discard this patch.
Classes/Controller/ListViewController.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,8 +24,7 @@
 block discarded – undo
24 24
  *
25 25
  * @access public
26 26
  */
27
-class ListViewController extends AbstractController
28
-{
27
+class ListViewController extends AbstractController {
29 28
     /**
30 29
      * @access protected
31 30
      * @var CollectionRepository
Please login to merge, or discard this patch.
Classes/Controller/NavigationController.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,8 +22,7 @@
 block discarded – undo
22 22
  *
23 23
  * @access public
24 24
  */
25
-class NavigationController extends AbstractController
26
-{
25
+class NavigationController extends AbstractController {
27 26
     /**
28 27
      * Method to get the page select values and use them with cHash
29 28
      *
Please login to merge, or discard this patch.
Classes/Controller/PageGridController.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,8 +23,7 @@
 block discarded – undo
23 23
  *
24 24
  * @access public
25 25
  */
26
-class PageGridController extends AbstractController
27
-{
26
+class PageGridController extends AbstractController {
28 27
     /**
29 28
      * The main method of the plugin
30 29
      *
Please login to merge, or discard this patch.
Classes/Controller/MetadataController.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,8 +27,7 @@
 block discarded – undo
27 27
  *
28 28
  * @access public
29 29
  */
30
-class MetadataController extends AbstractController
31
-{
30
+class MetadataController extends AbstractController {
32 31
     /**
33 32
      * @access private
34 33
      * @var AbstractDocument
Please login to merge, or discard this patch.