Completed
Push — master ( d77f41...c3fb1e )
by Jesse
02:08
created
src/NoContainerAvailable.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -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 Stratadox\Hydration\Mapper;
6 6
 
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
      * @param string $class The class that is missing a container.
22 22
      * @return self         The exception object.
23 23
      */
24
-    public static function for(string $class) : self
24
+    public static function for (string $class) : self
25 25
     {
26 26
         return new self(sprintf(
27 27
             'Could not produce mapping due to a missing container for class `%s`',
Please login to merge, or discard this patch.
src/NoLoaderAvailable.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -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 Stratadox\Hydration\Mapper;
6 6
 
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
      * @param string $class The class that is missing a loader.
22 22
      * @return self         The exception object.
23 23
      */
24
-    public static function for(string $class) : self
24
+    public static function for (string $class) : self
25 25
     {
26 26
         return new self(sprintf(
27 27
             'Could not produce mapping due to a missing loader for class `%s`',
Please login to merge, or discard this patch.