Passed
Pull Request — master (#123)
by
unknown
05:05
created
Classes/Updates/MigrateSettings.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,8 +26,7 @@
 block discarded – undo
26 26
  *
27 27
  * @internal
28 28
  */
29
-class MigrateSettings implements UpgradeWizardInterface
30
-{
29
+class MigrateSettings implements UpgradeWizardInterface {
31 30
 
32 31
     /**
33 32
      * Return the identifier for this wizard
Please login to merge, or discard this patch.
Classes/Updates/FileLocationUpdater.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -171,8 +171,7 @@
 block discarded – undo
171 171
      *
172 172
      * @throws \RuntimeException
173 173
      */
174
-    protected function getRecordsFromTable(bool $countOnly = false)
175
-    {
174
+    protected function getRecordsFromTable(bool $countOnly = false) {
176 175
         $connectionPool = GeneralUtility::makeInstance(ConnectionPool::class);
177 176
         $allResults = [];
178 177
         $numResults = 0;
Please login to merge, or discard this patch.
Classes/ExpressionLanguage/DocumentTypeProvider.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -22,8 +22,7 @@  discard block
 block discarded – undo
22 22
  *
23 23
  * @access public
24 24
  */
25
-class DocumentTypeProvider extends AbstractProvider
26
-{
25
+class DocumentTypeProvider extends AbstractProvider {
27 26
     /**
28 27
      * Construct the instance
29 28
      *
@@ -31,8 +30,7 @@  discard block
 block discarded – undo
31 30
      *
32 31
      * @return void
33 32
      */
34
-    public function __construct()
35
-    {
33
+    public function __construct() {
36 34
         $this->expressionLanguageProviders = [
37 35
             DocumentTypeFunctionProvider::class
38 36
         ];
Please login to merge, or discard this patch.
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.