12 lines
279 B
PHP
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;
|
|
}
|