Passed
Push — master ( 4be489...9ba7de )
by Tomasz
01:40
created
src/Shared/Standard/StringValueObject.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
         } catch (Exception $e) {
23 23
             throw $this->throwException($value, $e);
24 24
         }
25
-        $this->value = $value;
25
+        $this->value=$value;
26 26
     }
27 27
 
28 28
     public function getValue(): string
Please login to merge, or discard this patch.
src/Shared/Standard/IntegerValueObject.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
         } catch (Exception $e) {
23 23
             throw $this->throwException($value, $e);
24 24
         }
25
-        $this->value = $value;
25
+        $this->value=$value;
26 26
     }
27 27
 
28 28
     public function getValue(): int
Please login to merge, or discard this patch.
src/Shared/Standard/FloatValueObject.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
         } catch (Exception $e) {
23 23
             throw $this->throwException($value, $e);
24 24
         }
25
-        $this->value = $value;
25
+        $this->value=$value;
26 26
     }
27 27
 
28 28
     public function getValue(): float
Please login to merge, or discard this patch.
src/Shared/Standard/ArrayValueObject.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
         } catch (Exception $e) {
23 23
             throw $this->throwException($value, $e);
24 24
         }
25
-        $this->value = $value;
25
+        $this->value=$value;
26 26
     }
27 27
 
28 28
     public function getValue(): array
Please login to merge, or discard this patch.
src/Shared/Standard/BooleanValueObject.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
         } catch (Exception $e) {
23 23
             throw $this->throwException($value, $e);
24 24
         }
25
-        $this->value = $value;
25
+        $this->value=$value;
26 26
     }
27 27
 
28 28
     public function getValue(): bool
Please login to merge, or discard this patch.
src/Shared/DateTime/DateFormatValueObject.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -16,15 +16,15 @@
 block discarded – undo
16 16
 
17 17
     private $format;
18 18
 
19
-    public function __construct(DateTimeImmutable $value, string $format = DateTime::ATOM)
19
+    public function __construct(DateTimeImmutable $value, string $format=DateTime::ATOM)
20 20
     {
21 21
         try {
22 22
             $this->guard($value);
23 23
         } catch (Exception $e) {
24 24
             throw $this->throwException($value, $e);
25 25
         }
26
-        $this->value = $value;
27
-        $this->format = $format;
26
+        $this->value=$value;
27
+        $this->format=$format;
28 28
     }
29 29
 
30 30
     public function getValue(): string
Please login to merge, or discard this patch.
src/Shared/DateTime/TimestampValueObject.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
         } catch (Exception $e) {
21 21
             throw $this->throwException($value, $e);
22 22
         }
23
-        $this->value = $value;
23
+        $this->value=$value;
24 24
     }
25 25
 
26 26
     public function getValue(): int
Please login to merge, or discard this patch.