Passed
Pull Request — master (#4)
by Frederick
01:48
created
src/ValueObjects/Package.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
     public function __construct(string $name)
19 19
     {
20 20
         if(empty($name)) {
21
-           throw new EmptyValueException('Package name can\'t be empty');
21
+            throw new EmptyValueException('Package name can\'t be empty');
22 22
         }
23 23
 
24 24
         $this->name = $name;
Please login to merge, or discard this patch.
src/ValueObjects/DownloadStatistics.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,6 @@
 block discarded – undo
26 26
      * @param int $downloads
27 27
      * @param DateTimeImmutable $startDate
28 28
      * @param DateTimeImmutable $endDate
29
-
30 29
      */
31 30
     public function __construct(
32 31
         Package $package,
Please login to merge, or discard this patch.