2020-03-11 23:04:01 -04:00
|
|
|
<?php declare(strict_types=1);
|
|
|
|
/**
|
2020-03-12 11:45:11 -04:00
|
|
|
* Hummingbird Anime List Client
|
2020-03-11 23:04:01 -04:00
|
|
|
*
|
2020-03-12 11:45:11 -04:00
|
|
|
* An API client for Kitsu to manage anime and manga watch lists
|
2020-03-11 23:04:01 -04:00
|
|
|
*
|
2021-02-04 11:57:01 -05:00
|
|
|
* PHP version 8
|
2020-03-11 23:04:01 -04:00
|
|
|
*
|
2020-03-12 11:45:11 -04:00
|
|
|
* @package HummingbirdAnimeClient
|
2020-03-11 23:04:01 -04:00
|
|
|
* @author Timothy J. Warren <tim@timshomepage.net>
|
2021-01-13 01:52:03 -05:00
|
|
|
* @copyright 2015 - 2021 Timothy J. Warren
|
2020-03-11 23:04:01 -04:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
2020-12-10 17:06:50 -05:00
|
|
|
* @version 5.2
|
2020-03-12 11:45:11 -04:00
|
|
|
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
2020-03-11 23:04:01 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Aviat\Ion\Di;
|
|
|
|
|
|
|
|
use Psr\Log\LoggerInterface;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Interface for the Dependency Injection Container
|
|
|
|
*
|
|
|
|
* Based on container-interop interface, but return types and
|
|
|
|
* scalar type hints make the interface incompatible to the PHP parser
|
|
|
|
*
|
|
|
|
* @see https://github.com/container-interop/container-interop
|
|
|
|
*/
|
|
|
|
interface ContainerInterface {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Finds an entry of the container by its identifier and returns it.
|
|
|
|
*
|
|
|
|
* @param string $id Identifier of the entry to look for.
|
|
|
|
* @throws Exception\NotFoundException No entry was found for this identifier.
|
|
|
|
* @throws Exception\ContainerException Error while retrieving the entry.
|
|
|
|
* @return mixed Entry.
|
|
|
|
*/
|
|
|
|
public function get($id);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns true if the container can return an entry for the given identifier.
|
|
|
|
* Returns false otherwise.
|
|
|
|
*
|
|
|
|
* @param string $id Identifier of the entry to look for.
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public function has($id): bool;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a factory to the container
|
|
|
|
*
|
|
|
|
* @param string $id
|
|
|
|
* @param Callable $value - a factory callable for the item
|
|
|
|
* @return ContainerInterface
|
|
|
|
*/
|
|
|
|
public function set(string $id, Callable $value): ContainerInterface;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set a specific instance in the container for an existing factory
|
|
|
|
*
|
|
|
|
* @param string $id
|
|
|
|
* @param mixed $value
|
|
|
|
* @return ContainerInterface
|
|
|
|
*/
|
|
|
|
public function setInstance(string $id, $value): ContainerInterface;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a new instance of the specified item
|
|
|
|
*
|
|
|
|
* @param string $id
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function getNew($id);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determine whether a logger channel is registered
|
|
|
|
*
|
|
|
|
* @param string $id The logger channel
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public function hasLogger(string $id = 'default'): bool;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a logger to the Container
|
|
|
|
*
|
|
|
|
* @param LoggerInterface $logger
|
|
|
|
* @param string $id The logger 'channel'
|
|
|
|
* @return ContainerInterface
|
|
|
|
*/
|
|
|
|
public function setLogger(LoggerInterface $logger, string $id = 'default'): ContainerInterface;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieve a logger for the selected channel
|
|
|
|
*
|
|
|
|
* @param string $id The logger to retrieve
|
|
|
|
* @return LoggerInterface|null
|
|
|
|
*/
|
|
|
|
public function getLogger(string $id = 'default'): ?LoggerInterface;
|
|
|
|
}
|