PluginProbe
Auto Alt Text / 3.0.3
Auto Alt Text v3.0.3
3.0.3 2.8.2 1.3.1 1.3.2 2.0.0 2.1.0 2.1.1 2.2.0 2.3.0 2.3.1 2.3.2 2.3.3 2.3.4 2.4.0 2.4.1 2.4.2 2.5.0 2.5.1 2.5.2 2.5.3 2.6.0 2.6.1 2.7.0 2.8.0 2.8.1 All 28 releases
auto-alt-text / vendor-prefixed / php-di / php-di / src / Factory / RequestedEntry.php

RequestedEntry.php in Auto Alt Text 3.0.3, at vendor-prefixed/php-di/php-di/src/Factory/RequestedEntry.php

24 lines 493 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 declare(strict_types=1);
4
5 namespace AATXT\Vendor\DI\Factory;
6
7 /**
8 * Represents the container entry that was requested.
9 *
10 * Implementations of this interface can be injected in factory parameters in order
11 * to know what was the name of the requested entry.
12 *
13 * @api
14 *
15 * @author Matthieu Napoli <matthieu@mnapoli.fr>
16 */
17 interface RequestedEntry
18 {
19 /**
20 * Returns the name of the entry that was requested by the container.
21 */
22 public function getName() : string;
23 }
24