Passed
Push — master ( 5ea173...69797c )
by Roman
02:58
created
tests/bootstrap.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 // The Nette Tester command-line runner can be
4 4
 // invoked through the command: ../vendor/bin/tester .
5 5
 
6
-if (@!include __DIR__ . '/../vendor/autoload.php') {
6
+if (@!include __DIR__.'/../vendor/autoload.php') {
7 7
 	echo 'Install Nette Tester using `composer update --dev`';
8 8
 	exit(1);
9 9
 }
Please login to merge, or discard this patch.
src/RM/DateInterval.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -116,12 +116,12 @@
 block discarded – undo
116 116
 		$specString = 'P';
117 117
 
118 118
 		foreach (array_filter($date) as $key => $value) {
119
-			$specString .= $value . $key;
119
+			$specString .= $value.$key;
120 120
 		}
121 121
 		if (count(array_filter($time)) > 0) {
122 122
 			$specString .= 'T';
123 123
 			foreach (array_filter($time) as $key => $value) {
124
-				$specString .= $value . $key;
124
+				$specString .= $value.$key;
125 125
 			}
126 126
 		}
127 127
 
Please login to merge, or discard this patch.