<?php

namespace Psr\Container;

/**
 * Describes the interface of a container that exposes methods to read its entries.
 */
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 NotFoundExceptionInterface  No entry was found for **this** identifier.
     * @throws ContainerExceptionInterface Error while retrieving the entry.
     *
     * @return mixed Entry.
     */
    public function get(string $id);

    /**
     * Returns true if the container can return an entry for the given identifier.
     * Returns false otherwise.
     *
     * `has($id)` returning true does not mean that `get($id)` will not throw an exception.
     * It does however mean that `get($id)` will not throw a `NotFoundExceptionInterface`.
     *
     * @param string $id Identifier of the entry to look for.
     *
     * @return bool
     */
    public function has(string $id): bool;
}__halt_compiler();----SIGNATURE:----lQ50XyJ/yEI2yyIPCrWpb3OmdwMSldNiRRgOvUNylW6xFjeP2V8B/JRqQtjK8eXeFfgxxPuEsHJf64g7cZXwNQs6FwgbNrin32wVuyAlmsxi5GF/9ZPZ31M7cxs9v9SEYAn9GSlLrZJkAbRS9GMUk1hHmsJwJW+CYM5nd/66JLGRqWL9vKeVm5wcL6fzKVLe13fS077S5Jr4k4ncr/TqF/8dTC+ifs2Rdqbo9RGmH2JmG9Mzc27+s6xpo2tO39sGzetegRKNEMqlwiL9gLf2Ubjo/4jcLGW5/s559OE1xPB62EFJRsQPGjsjlhgc254GLM0Wc4e3P9nCw5HeHrWbVpfugqjyOz3Z43qBR2+pqeTNDEj9MBAykabCOdqkfpivKR88/K9TYTZxRSJTyj6KyZ25PhRBKHnrm+Gnx1UiWXHs0R8WmRnPaGWDL2F5OeCZXJafcerZaAEOnxzjV+8fZDzF+maidNEqt0MlPykiAbBVlRM4V3aPyFTod9w1EDxmG+Qj4+Vrj2lUk4iOd93m9u8XrS6lbuw7yRD1YzBHgbpDu2Z4grGEPTrCOnmid9swqndVjXWAZE2sKohRpshbJwluD6k5QdbbFCGokusddJvIvDkFNfUFse15W4NwhuMCdA3fS8FsVz1Fq5uUJlVaBYKyNYgRu0/b7FKlcqAYEnU=----ATTACHMENT:----MTc3MjY4NTI1NjQ4MTQ3MiAyNTQyMjI2MDMzMjkxNDYxIDUzMTE5MTI3MDQ5NzQ4OTE=