9 lines
185 B
PHP
9 lines
185 B
PHP
<?php
|
|
use Psr\Container\ContainerInterface as Container;
|
|
|
|
return [
|
|
'urls.base' => DI\decorate(function($prev, Container $c) {
|
|
return implode('/', [$prev, 'api']);
|
|
})
|
|
];
|