@@ -106,7 +106,7 @@ discard block |
||
106 | 106 | |
107 | 107 | $this->assertInstanceOf(RouteInterface::class, $route->addPrefix($bar)); |
108 | 108 | |
109 | - $this->assertEquals($bar.$foo, $route->getPath()); |
|
109 | + $this->assertEquals($bar . $foo, $route->getPath()); |
|
110 | 110 | } |
111 | 111 | |
112 | 112 | public function testAddSeveralPrefixex() |
@@ -120,7 +120,7 @@ discard block |
||
120 | 120 | $route->addPrefix($bar); |
121 | 121 | $route->addPrefix($baz); |
122 | 122 | |
123 | - $this->assertEquals($baz.$bar.$foo, $route->getPath()); |
|
123 | + $this->assertEquals($baz . $bar . $foo, $route->getPath()); |
|
124 | 124 | } |
125 | 125 | |
126 | 126 | public function testAddSuffix() |
@@ -132,7 +132,7 @@ discard block |
||
132 | 132 | |
133 | 133 | $this->assertInstanceOf(RouteInterface::class, $route->addSuffix($bar)); |
134 | 134 | |
135 | - $this->assertEquals($foo.$bar, $route->getPath()); |
|
135 | + $this->assertEquals($foo . $bar, $route->getPath()); |
|
136 | 136 | } |
137 | 137 | |
138 | 138 | public function testAddSeveralSuffixes() |
@@ -146,7 +146,7 @@ discard block |
||
146 | 146 | $route->addSuffix($bar); |
147 | 147 | $route->addSuffix($baz); |
148 | 148 | |
149 | - $this->assertEquals($foo.$bar.$baz, $route->getPath()); |
|
149 | + $this->assertEquals($foo . $bar . $baz, $route->getPath()); |
|
150 | 150 | } |
151 | 151 | |
152 | 152 | public function testAddMethod() |