|
@@ -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
|
require_once __DIR__.'/../vendor/autoload.php'; |
|
6
|
6
|
|
|
@@ -23,8 +23,8 @@ discard block |
|
|
block discarded – undo |
|
23
|
23
|
$dividend = TryCatch(delayed('readInt', "Enter an Int that you'd like to divide: ")); |
|
24
|
24
|
$divisor = TryCatch(delayed('readInt', "Enter an Int that you'd like to divide by: ")); |
|
25
|
25
|
|
|
26
|
|
-$result = $dividend->flatMap(function (int $x) use ($divisor): TryCatch { |
|
27
|
|
- return $divisor->map(function (int $y) use ($x) { |
|
|
26
|
+$result = $dividend->flatMap(function(int $x) use ($divisor): TryCatch { |
|
|
27
|
+ return $divisor->map(function(int $y) use ($x) { |
|
28
|
28
|
return intdiv($x, $y); |
|
29
|
29
|
}); |
|
30
|
30
|
}); |
Please login to merge, or discard this patch.