|
@@ -1,6 +1,6 @@ discard block |
|
|
block discarded – undo |
|
1
|
1
|
<?php |
|
2
|
2
|
|
|
3
|
|
-declare(strict_types=1); |
|
|
3
|
+declare(strict_types = 1); |
|
4
|
4
|
|
|
5
|
5
|
namespace Spiechu\SymfonyCommonsBundle\Service; |
|
6
|
6
|
|
|
@@ -27,7 +27,7 @@ discard block |
|
|
block discarded – undo |
|
27
|
27
|
return sprintf('%s %s', $this->property ? ($this->property.': ') : '', $this->message); |
|
28
|
28
|
} |
|
29
|
29
|
|
|
30
|
|
- public static function create(string $message, ?string $property = null): self |
|
|
30
|
+ public static function create(string $message, ?string $property = null) : self |
|
31
|
31
|
{ |
|
32
|
32
|
return new static($message, $property); |
|
33
|
33
|
} |
Please login to merge, or discard this patch.