Completed
Branch master (ad7e08)
by Albert
03:24
created
Category
src/Application/Service/CreatePasteService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Nastoletni\Code\Application\Service;
6 6
 
Please login to merge, or discard this patch.
src/Application/Service/CreatePastePayload.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Nastoletni\Code\Application\Service;
6 6
 
Please login to merge, or discard this patch.
src/Application/Crypter/CrypterException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Nastoletni\Code\Application\Crypter;
6 6
 
Please login to merge, or discard this patch.
src/Application/Crypter/PasteCrypter.php 1 patch
Spacing   +3 added lines, -3 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 Nastoletni\Code\Application\Crypter;
6 6
 
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
      * @param Paste  $paste
15 15
      * @param string $key
16 16
      */
17
-    public function encrypt(Paste &$paste, string $key): void;
17
+    public function encrypt(Paste&$paste, string $key): void;
18 18
 
19 19
     /**
20 20
      * Decrypts encrypted fields.
@@ -24,5 +24,5 @@  discard block
 block discarded – undo
24 24
      *
25 25
      * @throws CrypterException when given key is invalid.
26 26
      */
27
-    public function decrypt(Paste &$paste, string $key): void;
27
+    public function decrypt(Paste&$paste, string $key): void;
28 28
 }
Please login to merge, or discard this patch.
src/Application/Form/CreatePasteFormValidator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Nastoletni\Code\Application\Form;
6 6
 
Please login to merge, or discard this patch.
src/Application/Base10And62Converter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Nastoletni\Code\Application;
6 6
 
Please login to merge, or discard this patch.
src/Application/InvalidDataException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Nastoletni\Code\Application;
6 6
 
Please login to merge, or discard this patch.
src/Application/Generator/RandomIdGenerator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Nastoletni\Code\Application\Generator;
6 6
 
Please login to merge, or discard this patch.
src/Infrastructure/Dbal/DbalPasteMapper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace Nastoletni\Code\Infrastructure\Dbal;
6 6
 
Please login to merge, or discard this patch.