9 lines
240 B
PHP
9 lines
240 B
PHP
|
<?php
|
||
|
use Psr\Container\ContainerInterface as Container;
|
||
|
|
||
|
return [
|
||
|
ProVM\TotalSport\Common\Service\DataHandler::class => function(Container $c) {
|
||
|
return new ProVM\TotalSport\Common\Service\DataHandler($c->get('folders.data'));
|
||
|
}
|
||
|
];
|