Fix base directory for streams

This commit is contained in:
Matias Griese
2014-10-01 22:23:29 +03:00
parent 16b541a8ee
commit a3c58fcc5a

View File

@@ -15,7 +15,7 @@ class StreamsServiceProvider implements ServiceProviderInterface
$self = $this;
$container['locator'] = function($c) use ($self) {
$locator = new UniformResourceLocator;
$locator = new UniformResourceLocator(ROOT_DIR);
$self->init($c, $locator);
return $locator;