This commit is contained in:
alcalbg
2022-10-12 10:49:45 +00:00
parent 78a77cc193
commit 21497025de
217 changed files with 49804 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<?php
/*
* This file is part of the FileGator package.
*
* (c) Milos Stojanovic <alcalbg@gmail.com>
*
* For the full copyright and license information, please view the LICENSE file
*/
namespace Filegator\Container;
use DI\Container as PHPDIContainer;
class Container extends PHPDIContainer implements ContainerInterface
{
}

View File

@@ -0,0 +1,20 @@
<?php
/*
* This file is part of the FileGator package.
*
* (c) Milos Stojanovic <alcalbg@gmail.com>
*
* For the full copyright and license information, please view the LICENSE file
*/
namespace Filegator\Container;
interface ContainerInterface
{
public function get($name);
public function set(string $name, $value);
public function call($callable, array $parameters = []);
}