Completed
Branch master (3108bc)
by Igor
03:02
created
src/Bundle/Common/Bag/PostBag.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @license MIT
4
- * @author Igor Sorokin <[email protected]>
5
- */
3
+     * @license MIT
4
+     * @author Igor Sorokin <[email protected]>
5
+     */
6 6
 namespace Dspbee\Bundle\Common\Bag;
7 7
 
8 8
 /**
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
      */
57 57
     public function fetch($key, $default = null)
58 58
     {
59
-        return $_POST[$key] ?? $default;
59
+        return $_POST[$key] ? ? $default;
60 60
     }
61 61
 
62 62
     /**
Please login to merge, or discard this patch.
src/Bundle/Common/Bag/ValueBag.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @license MIT
4
- * @author Igor Sorokin <[email protected]>
5
- */
3
+     * @license MIT
4
+     * @author Igor Sorokin <[email protected]>
5
+     */
6 6
 namespace Dspbee\Bundle\Common\Bag;
7 7
 
8 8
 /**
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
      */
60 60
     public function fetch($key, $default = null)
61 61
     {
62
-        return $this->bag[$key] ?? $default;
62
+        return $this->bag[$key] ? ? $default;
63 63
     }
64 64
 
65 65
     /**
Please login to merge, or discard this patch.
src/Bundle/Common/File/Exception/FileException.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @license MIT
4
- * @author Igor Sorokin <[email protected]>
5
- */
3
+     * @license MIT
4
+     * @author Igor Sorokin <[email protected]>
5
+     */
6 6
 namespace Dspbee\Bundle\Common\File\Exception;
7 7
 
8 8
 /**
Please login to merge, or discard this patch.
src/Bundle/Common/File/Exception/FileNotFoundException.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @license MIT
4
- * @author Igor Sorokin <[email protected]>
5
- */
3
+     * @license MIT
4
+     * @author Igor Sorokin <[email protected]>
5
+     */
6 6
 namespace Dspbee\Bundle\Common\File\Exception;
7 7
 
8 8
 /**
Please login to merge, or discard this patch.
src/Bundle/Common/File/MimeType/MimeType.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @license MIT
4
- * @author Igor Sorokin <[email protected]>
5
- */
3
+     * @license MIT
4
+     * @author Igor Sorokin <[email protected]>
5
+     */
6 6
 namespace Dspbee\Bundle\Common\File\MimeType;
7 7
 
8 8
 use Dspbee\Bundle\Common\File\Exception\FileNotFoundException;
Please login to merge, or discard this patch.
src/Bundle/Common/File/MimeType/FileInfoMimeType.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @license MIT
4
- * @author Igor Sorokin <[email protected]>
5
- */
3
+     * @license MIT
4
+     * @author Igor Sorokin <[email protected]>
5
+     */
6 6
 namespace Dspbee\Bundle\Common\File\MimeType;
7 7
 
8 8
 use Dspbee\Bundle\Common\File\Exception\FileNotFoundException;
Please login to merge, or discard this patch.
src/Bundle/Common/File/MimeType/BinaryMimeType.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @license MIT
4
- * @author Igor Sorokin <[email protected]>
5
- */
3
+     * @license MIT
4
+     * @author Igor Sorokin <[email protected]>
5
+     */
6 6
 namespace Dspbee\Bundle\Common\File\MimeType;
7 7
 
8 8
 use Dspbee\Bundle\Common\File\Exception\FileNotFoundException;
Please login to merge, or discard this patch.
src/Bundle/Common/File/FileBag.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @license MIT
4
- * @author Igor Sorokin <[email protected]>
5
- */
3
+     * @license MIT
4
+     * @author Igor Sorokin <[email protected]>
5
+     */
6 6
 namespace Dspbee\Bundle\Common\File;
7 7
 
8 8
 /**
Please login to merge, or discard this patch.
src/Bundle/Common/File/Extension/Extension.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @license MIT
4
- * @author Igor Sorokin <[email protected]>
5
- */
3
+     * @license MIT
4
+     * @author Igor Sorokin <[email protected]>
5
+     */
6 6
 namespace Dspbee\Bundle\Common\File\Extension;
7 7
 
8 8
 /**
Please login to merge, or discard this patch.