Files
2026-04-28 15:13:50 +02:00

12 lines
279 B
PHP

<?php
declare(strict_types=1);
namespace WCPay\Vendor\League\Container;
interface ContainerAwareInterface
{
public function getContainer(): DefinitionContainerInterface;
public function setContainer(DefinitionContainerInterface $container): ContainerAwareInterface;
}