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