PluginProbe
Elementor Website Builder – more than just a page builder / 3.27.4
Elementor Website Builder – more than just a page builder v3.27.4
4.3.0-beta2 4.3.0-beta1 4.2.4 4.2.3 4.2.2 4.2.1 4.2.0 4.1.5 4.2.0-beta2 4.2.0-dev2 4.2.0-beta1 4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.1.0-beta3 4.1.0-dev3 4.0.9 4.1.0-beta2 4.1.0-dev2 4.0.8 4.1.0-beta1 4.1.0-dev1 4.0.7 All 451 releases
elementor / vendor_prefixed / php-di / php-di / src / Factory / RequestedEntry.php

RequestedEntry.php in Elementor Website Builder – more than just a page builder 3.27.4, at vendor_prefixed/php-di/php-di/src/Factory/RequestedEntry.php

23 lines 494 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 namespace ElementorDeps\DI\Factory;
5
6 /**
7 * Represents the container entry that was requested.
8 *
9 * Implementations of this interface can be injected in factory parameters in order
10 * to know what was the name of the requested entry.
11 *
12 * @api
13 *
14 * @author Matthieu Napoli <matthieu@mnapoli.fr>
15 */
16 interface RequestedEntry
17 {
18 /**
19 * Returns the name of the entry that was requested by the container.
20 */
21 public function getName() : string;
22 }
23