Passed
Push — heiglandreas-patch-1 ( 5b7c54 )
by Andreas
10:38
created
src/Factory/SwapDecoratorFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
 		return new SwapRule(
62 62
 			$direction,
63 63
 			GregorianWeekday::fromString($to),
64
-			...array_map(function ($item) {
64
+			...array_map(function($item) {
65 65
 				return GregorianWeekday::fromString($item);
66 66
 			}, explode(' ', $when))
67 67
 		);
Please login to merge, or discard this patch.
src/IteratorItem/DateFollowUp.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@
 block discarded – undo
91 91
 			];
92 92
 		}
93 93
 
94
-		return array_filter(array_map(function (string $day) use ($daymap) {
94
+		return array_filter(array_map(function(string $day) use ($daymap) {
95 95
 			if (!isset($daymap[$day])) {
96 96
 				return null;
97 97
 			}
Please login to merge, or discard this patch.
src/GregorianWeekday.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -109,7 +109,7 @@
 block discarded – undo
109 109
 	{
110 110
 		$weekday = strtolower($weekday);
111 111
 		$callable = [self::class, $weekday];
112
-		if (! is_callable($callable)) {
112
+		if (!is_callable($callable)) {
113 113
 			throw new RuntimeException(sprintf(
114 114
 				'Weekday "%s" is not known',
115 115
 				$weekday
Please login to merge, or discard this patch.