Completed
Pull Request — master (#9)
by Samuel
03:17
created
src/Mapper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace SimpleMapper;
5 5
 
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
      * @param string $class
69 69
      * @return null|Repository
70 70
      */
71
-    public function getRepository(string $class): ?Repository
71
+    public function getRepository(string $class): ? Repository
72 72
     {
73 73
         return $this->repositories[$class] ?? null;
74 74
     }
Please login to merge, or discard this patch.
src/Exception/DeprecatedException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace SimpleMapper\Exception;
5 5
 
Please login to merge, or discard this patch.
src/Exception/SimpleMapperException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace SimpleMapper\Exception;
5 5
 
Please login to merge, or discard this patch.
src/Exception/ActiveRowException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace SimpleMapper\Exception;
5 5
 
Please login to merge, or discard this patch.
src/Exception/RepositoryException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace SimpleMapper\Exception;
5 5
 
Please login to merge, or discard this patch.