Passed
Push — master ( 4d05ee...3e4a2e )
by Roman
01:40
created
src/RM/DateInterval.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -105,12 +105,12 @@
 block discarded – undo
105 105
 		$specString = 'P';
106 106
 
107 107
 		foreach ($date as $key => $value) {
108
-			$specString .= $value . $key;
108
+			$specString .= $value.$key;
109 109
 		}
110 110
 		if (count($time) > 0) {
111 111
 			$specString .= 'T';
112 112
 			foreach ($time as $key => $value) {
113
-				$specString .= $value . $key;
113
+				$specString .= $value.$key;
114 114
 			}
115 115
 		}
116 116
 
Please login to merge, or discard this patch.
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.