![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/laminas/laminas-feed/src/Writer/ |
<?php declare(strict_types=1); namespace Laminas\Feed\Writer; /** * This interface exists to provide type inference for container implementations that retrieve extensions. * Methods have been migrated from declared in PHP to being part of the docblock signature, * in order to avoid conflicting with `psr/container` signatures, which are way stricter, and * therefore incompatible with this one. * * @deprecated this interface is no longer needed, and shouldn't be relied upon * * @method has(string $extension): bool * @method get(string $extension): mixed */ interface ExtensionManagerInterface { }