• File: RequestedEntryHolder.php
  • Full Path: /home/blwgracecity/jesusexp.org/wp-content/plugins/elementor/vendor_prefixed/dependency-injection/php-di/php-di/src/Compiler/RequestedEntryHolder.php
  • File size: 450 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

declare (strict_types=1);
namespace ElementorDeps\DI\Compiler;

use ElementorDeps\DI\Factory\RequestedEntry;
/**
 * @author Matthieu Napoli <matthieu@mnapoli.fr>
 */
class RequestedEntryHolder implements RequestedEntry
{
    /**
     * @var string
     */
    private $name;
    public function __construct(string $name)
    {
        $this->name = $name;
    }
    public function getName() : string
    {
        return $this->name;
    }
}