init
This commit is contained in:
@@ -0,0 +1 @@
|
||||
<?php
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
<?php
|
||||
namespace MailPoetVendor\Psr\Container;
|
||||
if (!defined('ABSPATH')) exit;
|
||||
interface ContainerExceptionInterface
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
declare (strict_types=1);
|
||||
namespace MailPoetVendor\Psr\Container;
|
||||
if (!defined('ABSPATH')) exit;
|
||||
interface ContainerInterface
|
||||
{
|
||||
public function get(string $id);
|
||||
public function has(string $id);
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
<?php
|
||||
namespace MailPoetVendor\Psr\Container;
|
||||
if (!defined('ABSPATH')) exit;
|
||||
interface NotFoundExceptionInterface extends ContainerExceptionInterface
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
<?php
|
||||
Reference in New Issue
Block a user