@@ -14,7 +14,7 @@ discard block |
||
| 14 | 14 | use MeadSteve\DiceApi\RequestHandler\DiceRequestHandler; |
| 15 | 15 | use Predis\Client; |
| 16 | 16 | |
| 17 | -require __DIR__ . "/../vendor/autoload.php"; |
|
| 17 | +require __DIR__."/../vendor/autoload.php"; |
|
| 18 | 18 | |
| 19 | 19 | $diceGenerator = new UrlDiceGenerator( |
| 20 | 20 | new DiceFactoryCollection([ |
@@ -25,7 +25,7 @@ discard block |
||
| 25 | 25 | |
| 26 | 26 | $rendererCollection = new RendererCollection([ |
| 27 | 27 | new Json(), |
| 28 | - new Html('http://' . $_SERVER['HTTP_HOST']), |
|
| 28 | + new Html('http://'.$_SERVER['HTTP_HOST']), |
|
| 29 | 29 | new Plain() |
| 30 | 30 | ]); |
| 31 | 31 | |