2022-12-28 13:31:44 +01:00
|
|
|
<?php
|
|
|
|
|
2023-01-03 10:49:19 +01:00
|
|
|
/**
|
|
|
|
* For the full copyright and license information, please view the LICENSE
|
|
|
|
* file that was distributed with this source code.
|
|
|
|
*
|
|
|
|
* https://www.d3data.de
|
|
|
|
*
|
|
|
|
* @copyright (C) D3 Data Development (Inh. Thomas Dartsch)
|
|
|
|
* @author D3 Data Development - Daniel Seifert <support@shopmodule.com>
|
|
|
|
* @link https://www.oxidmodule.com
|
|
|
|
*/
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
2022-12-28 13:31:44 +01:00
|
|
|
namespace D3\DIContainerHandler;
|
|
|
|
|
2023-11-23 15:01:44 +01:00
|
|
|
use Symfony\Component\DependencyInjection\Container;
|
|
|
|
|
2022-12-28 13:31:44 +01:00
|
|
|
/**
|
|
|
|
* Interface d3DicHandlerInterface
|
|
|
|
*/
|
|
|
|
interface d3DicHandlerInterface
|
|
|
|
{
|
2023-11-23 15:01:44 +01:00
|
|
|
public static function getInstance(): ?Container;
|
2023-11-23 15:05:40 +01:00
|
|
|
}
|