Completed
Pull Request — master (#281)
by Kristof
04:25
created
src/SavedSearches/Properties/CreatedByQueryString.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,6 +25,6 @@
 block discarded – undo
25 25
      */
26 26
     private function generateQuery()
27 27
     {
28
-        return 'createdby:' . $this->emailAddress;
28
+        return 'createdby:'.$this->emailAddress;
29 29
     }
30 30
 }
Please login to merge, or discard this patch.
src/StringFilter/TruncateStringFilter.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -96,14 +96,14 @@  discard block
 block discarded – undo
96 96
             // If the ellipsis is longer or equal to the maximum length, simply truncate the ellipsis so it fits in
97 97
             // the maximum length and return it.
98 98
             if ($suffix->length() >= $maxLength) {
99
-                return (string) $suffix->truncate($maxLength);
99
+                return (string)$suffix->truncate($maxLength);
100 100
             }
101 101
         }
102 102
 
103 103
         $stringy = Stringy::create($string, 'UTF-8');
104 104
 
105 105
         $sentencePattern = '/(.*[.!?])(?:\\s|\\h|$|\\\u00a0).*/su';
106
-        $trunc = (string) $stringy->first($maxLength);
106
+        $trunc = (string)$stringy->first($maxLength);
107 107
         $hasEndingSymbolInRange = preg_match($sentencePattern, $trunc);
108 108
 
109 109
         if ($this->sentenceFriendly && $hasEndingSymbolInRange === 1) {
@@ -122,6 +122,6 @@  discard block
 block discarded – undo
122 122
             $truncated = $truncated->regexReplace($pattern, $suffix);
123 123
         }
124 124
 
125
-        return (string) $truncated;
125
+        return (string)$truncated;
126 126
     }
127 127
 }
Please login to merge, or discard this patch.
src/StringFilter/StripHtmlStringFilter.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -54,10 +54,10 @@  discard block
 block discarded – undo
54 54
         if ($selfClosing) {
55 55
             // Find the self-closing tag, including its attributes and optionally a closing slash.
56 56
             // .*? means: Get any characters, 0 or more, but non-greedy so stop when the first / or > is encountered.
57
-            $pattern .= '(<' . $tag . '.*?[\\/]?>)';
57
+            $pattern .= '(<'.$tag.'.*?[\\/]?>)';
58 58
         } else {
59 59
             // Find the closing tag.
60
-            $pattern .= '(<\\/' . $tag . '>)';
60
+            $pattern .= '(<\\/'.$tag.'>)';
61 61
         }
62 62
 
63 63
         // Capture any newlines after the tag as well.
@@ -73,11 +73,11 @@  discard block
 block discarded – undo
73 73
         }
74 74
 
75 75
         // Loop over all matching tags from the string.
76
-        return preg_replace_callback($pattern, function ($match) use ($newlines) {
76
+        return preg_replace_callback($pattern, function($match) use ($newlines) {
77 77
             // Return the tag appended by the specified amount of newlines. Note that $match[0] is the full captured
78 78
             // match, so it also includes the newlines after the tag. $match[1] is just the tag itself, and $match[2]
79 79
             // are the newlines following it (if any).
80
-            return $match[1] . $newlines;
80
+            return $match[1].$newlines;
81 81
         }, $string);
82 82
     }
83 83
 
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
     {
97 97
         // Pattern that finds any consecutive newlines that exceed the allowed limit.
98 98
         $exceeded = $limit + 1;
99
-        $pattern = '/((\\n){' . $exceeded . ',})/';
99
+        $pattern = '/((\\n){'.$exceeded.',})/';
100 100
 
101 101
         // Create a string with the maximum number of allowed newlines.
102 102
         $newlines = '';
Please login to merge, or discard this patch.
src/CommandHandling/Udb3CommandHandler.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
 
24 24
         $method = $this->getHandleMethod($command);
25 25
 
26
-        if (! method_exists($this, $method)) {
26
+        if (!method_exists($this, $method)) {
27 27
             return;
28 28
         }
29 29
 
@@ -40,6 +40,6 @@  discard block
 block discarded – undo
40 40
     {
41 41
         $classParts = explode('\\', get_class($command));
42 42
 
43
-        return 'handle' . end($classParts);
43
+        return 'handle'.end($classParts);
44 44
     }
45 45
 }
Please login to merge, or discard this patch.
src/Place/ReadModel/JSONLD/CdbXMLImporter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@
 block discarded – undo
97 97
                         'addressLocality' => $address->getCity(),
98 98
                         'postalCode' => $address->getZip(),
99 99
                         'streetAddress' =>
100
-                            $address->getStreet() . ' ' .
100
+                            $address->getStreet().' '.
101 101
                             $address->getHouseNumber(),
102 102
                     );
103 103
 
Please login to merge, or discard this patch.
src/HasCdbXmlTrait.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
     {
26 26
         if (!is_string($cdbXml)) {
27 27
             throw new \InvalidArgumentException(
28
-                'Expected argument 1 to be a scalar string, received ' . gettype($cdbXml)
28
+                'Expected argument 1 to be a scalar string, received '.gettype($cdbXml)
29 29
             );
30 30
         }
31 31
         $this->cdbXml = $cdbXml;
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
     {
39 39
         if (!is_string($cdbXmlNamespaceUri)) {
40 40
             throw new \InvalidArgumentException(
41
-                'Expected argument 1 to be a scalar string, received ' . gettype($cdbXmlNamespaceUri)
41
+                'Expected argument 1 to be a scalar string, received '.gettype($cdbXmlNamespaceUri)
42 42
             );
43 43
         }
44 44
         $this->cdbXmlNamespaceUri = $cdbXmlNamespaceUri;
Please login to merge, or discard this patch.
src/Media/SimplePathGenerator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,6 +12,6 @@
 block discarded – undo
12 12
      */
13 13
     public function path(UUID $fileId, String $extension)
14 14
     {
15
-        return (string)$fileId . '.' . (string)$extension;
15
+        return (string)$fileId.'.'.(string)$extension;
16 16
     }
17 17
 }
Please login to merge, or discard this patch.
src/Media/ImageUploaderService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -91,8 +91,8 @@
 block discarded – undo
91 91
         $mimeType = MIMEType::fromNative($mimeTypeString);
92 92
 
93 93
         $fileId = new UUID($this->uuidGenerator->generate());
94
-        $fileName = $fileId . '.' . $file->guessExtension();
95
-        $destination = $this->getUploadDirectory() . '/' . $fileName;
94
+        $fileName = $fileId.'.'.$file->guessExtension();
95
+        $destination = $this->getUploadDirectory().'/'.$fileName;
96 96
         $stream = fopen($file->getRealPath(), 'r+');
97 97
         $this->filesystem->writeStream($destination, $stream);
98 98
         fclose($stream);
Please login to merge, or discard this patch.
src/Event/ReadModel/JSONLD/EventLDProjector.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -272,7 +272,7 @@  discard block
 block discarded – undo
272 272
     ) {
273 273
         $this->saveNewDocument(
274 274
             $eventId,
275
-            function (\stdClass $eventLd) use ($eventId, $cdbXmlNamespaceUri, $cdbXml, $domainMessage) {
275
+            function(\stdClass $eventLd) use ($eventId, $cdbXmlNamespaceUri, $cdbXml, $domainMessage) {
276 276
                 $eventLd = $this->projectEventCdbXmlToObject(
277 277
                     $eventLd,
278 278
                     $eventId,
@@ -329,13 +329,13 @@  discard block
 block discarded – undo
329 329
     ) {
330 330
         $this->saveNewDocument(
331 331
             $eventId,
332
-            function (\stdClass $eventLd) use ($cdbXmlNamespaceUri, $eventId, $cdbXml) {
332
+            function(\stdClass $eventLd) use ($cdbXmlNamespaceUri, $eventId, $cdbXml) {
333 333
                 return $this->projectEventCdbXmlToObject(
334 334
                     $eventLd,
335 335
                     $eventId,
336 336
                     $cdbXmlNamespaceUri,
337 337
                     $cdbXml
338
-                ) ;
338
+                );
339 339
             }
340 340
         );
341 341
     }
@@ -411,7 +411,7 @@  discard block
 block discarded – undo
411 411
     ) {
412 412
         $this->saveNewDocument(
413 413
             $eventCreated->getEventId(),
414
-            function (\stdClass $jsonLD) use ($eventCreated, $domainMessage) {
414
+            function(\stdClass $jsonLD) use ($eventCreated, $domainMessage) {
415 415
                 $jsonLD->{'@id'} = $this->iriGenerator->iri(
416 416
                     $eventCreated->getEventId()
417 417
                 );
@@ -485,8 +485,8 @@  discard block
 block discarded – undo
485 485
         ) + (array)$this->placeJSONLD($majorInfoUpdated->getLocation()->getCdbid());
486 486
 
487 487
         // Remove old theme and event type.
488
-        $jsonLD->terms = array_filter($jsonLD->terms, function ($term) {
489
-            return $term->domain !== EventType::DOMAIN &&  $term->domain !== Theme::DOMAIN;
488
+        $jsonLD->terms = array_filter($jsonLD->terms, function($term) {
489
+            return $term->domain !== EventType::DOMAIN && $term->domain !== Theme::DOMAIN;
490 490
         });
491 491
 
492 492
         $eventType = $majorInfoUpdated->getEventType();
@@ -663,7 +663,7 @@  discard block
 block discarded – undo
663 663
     {
664 664
         $eventSlug = $this->slugger->slug($name);
665 665
         return array(
666
-            'http://www.uitinvlaanderen.be/agenda/e/' . $eventSlug . '/' . $eventId,
666
+            'http://www.uitinvlaanderen.be/agenda/e/'.$eventSlug.'/'.$eventId,
667 667
         );
668 668
     }
669 669
 
Please login to merge, or discard this patch.