@@ -3,7 +3,7 @@ |
||
| 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 | } |
@@ -116,12 +116,12 @@ |
||
| 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 | |