Passed
Push — master ( 89258b...e557bd )
by Jan
04:44
created
src/Services/Attachments/BuiltinAttachmentsFinder.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
     protected function configureOptions(OptionsResolver $resolver)
44 44
     {
45 45
         $resolver->setDefaults([
46
-            'limit' => 15,  //Given only 15 entries
46
+            'limit' => 15, //Given only 15 entries
47 47
             //'allowed_extensions' => [], //Filter the filenames. For example ['jpg', 'jpeg'] to only get jpegs.
48 48
             //'placeholders' => Attachment::BUILTIN_PLACEHOLDER, //By default use all builtin ressources,
49 49
             'empty_returns_all' => false, //Return the whole list of ressources when empty keyword is given
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
     public function getListOfRessources(): array
61 61
     {
62 62
         try {
63
-            return $this->cache->get('attachment_builtin_ressources', function () {
63
+            return $this->cache->get('attachment_builtin_ressources', function() {
64 64
                 $results = [];
65 65
 
66 66
                 $finder = new Finder();
Please login to merge, or discard this patch.
src/Services/Attachments/FileTypeFilterTools.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -139,7 +139,7 @@
 block discarded – undo
139 139
     {
140 140
         $filter = trim($filter);
141 141
 
142
-        return $this->cache->get('filter_exts_'.md5($filter), function (ItemInterface $item) use ($filter) {
142
+        return $this->cache->get('filter_exts_'.md5($filter), function(ItemInterface $item) use ($filter) {
143 143
             $elements = explode(',', $filter);
144 144
             $extensions = [];
145 145
 
Please login to merge, or discard this patch.
src/Services/TreeBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -166,7 +166,7 @@
 block discarded – undo
166 166
         $secure_class_name = str_replace('\\', '_', $class_name);
167 167
         $key = 'list_'.$this->keyGenerator->generateKey().'_'.$secure_class_name.$parent_id;
168 168
 
169
-        $ret = $this->cache->get($key, function (ItemInterface $item) use ($class_name, $parent, $secure_class_name) {
169
+        $ret = $this->cache->get($key, function(ItemInterface $item) use ($class_name, $parent, $secure_class_name) {
170 170
             // Invalidate when groups, a element with the class or the user changes
171 171
             $item->tag(['groups', 'tree_list', $this->keyGenerator->generateKey(), $secure_class_name]);
172 172
             /**
Please login to merge, or discard this patch.
src/Services/StructuralElementRecursionHelper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
80 80
     {
81 81
         $em = $this->em;
82 82
 
83
-        $this->execute($element, static function (StructuralDBElement $element) use ($em) {
83
+        $this->execute($element, static function(StructuralDBElement $element) use ($em) {
84 84
             $em->remove($element);
85 85
         });
86 86
 
Please login to merge, or discard this patch.
src/Services/ToolsTreeBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@
 block discarded – undo
77 77
     {
78 78
         $key = 'tree_tools_'.$this->keyGenerator->generateKey();
79 79
 
80
-        return $this->cache->get($key, function (ItemInterface $item) {
80
+        return $this->cache->get($key, function(ItemInterface $item) {
81 81
             //Invalidate tree, whenever group or the user changes
82 82
             $item->tag(['tree_tools', 'groups', $this->keyGenerator->generateKey()]);
83 83
 
Please login to merge, or discard this patch.
src/Services/AmountFormatter.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
     protected function configureOptions(OptionsResolver $resolver)
41 41
     {
42 42
         $resolver->setDefaults([
43
-            'show_prefix' => function (Options $options) {
43
+            'show_prefix' => function(Options $options) {
44 44
                 if (null !== $options['measurement_unit']) {
45 45
                     /** @var MeasurementUnit $unit */
46 46
                     $unit = $options['measurement_unit'];
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
 
51 51
                 return false;
52 52
             },
53
-            'is_integer' => function (Options $options) {
53
+            'is_integer' => function(Options $options) {
54 54
                 if (null !== $options['measurement_unit']) {
55 55
                     /** @var MeasurementUnit $unit */
56 56
                     $unit = $options['measurement_unit'];
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
 
61 61
                 return true;
62 62
             },
63
-            'unit' => function (Options $options) {
63
+            'unit' => function(Options $options) {
64 64
                 if (null !== $options['measurement_unit']) {
65 65
                     /** @var MeasurementUnit $unit */
66 66
                     $unit = $options['measurement_unit'];
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
 
77 77
         $resolver->setAllowedTypes('decimals', 'int');
78 78
 
79
-        $resolver->setNormalizer('decimals', function (Options $options, $value) {
79
+        $resolver->setNormalizer('decimals', function(Options $options, $value) {
80 80
             // If the unit is integer based, then dont show any decimals
81 81
             if ($options['is_integer']) {
82 82
                 return 0;
Please login to merge, or discard this patch.
src/Twig/AppExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@
 block discarded – undo
79 79
     public function getTests()
80 80
     {
81 81
         return [
82
-            new TwigTest('instanceof', function ($var, $instance) {
82
+            new TwigTest('instanceof', function($var, $instance) {
83 83
                 return $var instanceof $instance;
84 84
             }),
85 85
         ];
Please login to merge, or discard this patch.
src/Entity/Attachments/Attachment.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -477,7 +477,7 @@
 block discarded – undo
477 477
         if ($only_http) {   //Check if scheme is HTTPS or HTTP
478 478
             $scheme = parse_url($string, PHP_URL_SCHEME);
479 479
             if ('http' !== $scheme && 'https' !== $scheme) {
480
-                return false;   //All other schemes are not valid.
480
+                return false; //All other schemes are not valid.
481 481
             }
482 482
         }
483 483
         if ($path_required) {
Please login to merge, or discard this patch.
src/Entity/Base/StructuralDBElement.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -176,7 +176,6 @@
 block discarded – undo
176 176
 
177 177
     /**
178 178
      *  Get the comment of the element.
179
-
180 179
      *
181 180
      * @return string the comment
182 181
      */
Please login to merge, or discard this patch.