PHP 8.2.31
Preview: ValueDefinition.php Size: 1.11 KB
/opt/cpanel/ea-wappspector/vendor/php-di/php-di/src/Definition/ValueDefinition.php

<?php

declare(strict_types=1);

namespace DI\Definition;

use Psr\Container\ContainerInterface;

/**
 * Definition of a value for dependency injection.
 *
 * @author Matthieu Napoli <matthieu@mnapoli.fr>
 */
class ValueDefinition implements Definition, SelfResolvingDefinition
{
    /**
     * Entry name.
     */
    private string $name = '';

    public function __construct(
        private mixed $value,
    ) {
    }

    public function getName() : string
    {
        return $this->name;
    }

    public function setName(string $name) : void
    {
        $this->name = $name;
    }

    public function getValue() : mixed
    {
        return $this->value;
    }

    public function resolve(ContainerInterface $container) : mixed
    {
        return $this->getValue();
    }

    public function isResolvable(ContainerInterface $container) : bool
    {
        return true;
    }

    public function replaceNestedDefinitions(callable $replacer) : void
    {
        // no nested definitions
    }

    public function __toString() : string
    {
        return sprintf('Value (%s)', var_export($this->value, true));
    }
}

Directory Contents

Dirs: 6 × Files: 14

Name Size Perms Modified Actions
Dumper DIR
- drwxr-xr-x 2025-08-16 11:10:48
Edit Download
Exception DIR
- drwxr-xr-x 2025-08-16 11:10:48
Edit Download
Helper DIR
- drwxr-xr-x 2025-08-16 11:10:48
Edit Download
- drwxr-xr-x 2025-08-16 11:10:48
Edit Download
Resolver DIR
- drwxr-xr-x 2025-08-16 11:10:48
Edit Download
Source DIR
- drwxr-xr-x 2025-08-16 11:10:48
Edit Download
1.31 KB lrw-r--r-- 2025-08-16 11:10:48
Edit Download
1017 B lrw-r--r-- 2025-08-16 11:10:48
Edit Download
170 B lrw-r--r-- 2025-08-16 11:10:48
Edit Download
782 B lrw-r--r-- 2025-08-16 11:10:48
Edit Download
847 B lrw-r--r-- 2025-08-16 11:10:48
Edit Download
2.50 KB lrw-r--r-- 2025-08-16 11:10:48
Edit Download
323 B lrw-r--r-- 2025-08-16 11:10:48
Edit Download
1.72 KB lrw-r--r-- 2025-08-16 11:10:48
Edit Download
1.12 KB lrw-r--r-- 2025-08-16 11:10:48
Edit Download
6.30 KB lrw-r--r-- 2025-08-16 11:10:48
Edit Download
1.29 KB lrw-r--r-- 2025-08-16 11:10:48
Edit Download
528 B lrw-r--r-- 2025-08-16 11:10:48
Edit Download
2.21 KB lrw-r--r-- 2025-08-16 11:10:48
Edit Download
1.11 KB lrw-r--r-- 2025-08-16 11:10:48
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).