PHP 8.3.31
Preview: ServiceProviderInterface.php Size: 1.35 KB
/home/getspomw/royalsquad.us/vendor/symfony/service-contracts/ServiceProviderInterface.php

<?php

/*
 * This file is part of the Symfony package.
 *
 * (c) Fabien Potencier <fabien@symfony.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Symfony\Contracts\Service;

use Psr\Container\ContainerInterface;

/**
 * A ServiceProviderInterface exposes the identifiers and the types of services provided by a container.
 *
 * @author Nicolas Grekas <p@tchwork.com>
 * @author Mateusz Sip <mateusz.sip@gmail.com>
 *
 * @template-covariant T of mixed
 */
interface ServiceProviderInterface extends ContainerInterface
{
    /**
     * @return T
     */
    public function get(string $id): mixed;

    public function has(string $id): bool;

    /**
     * Returns an associative array of service types keyed by the identifiers provided by the current container.
     *
     * Examples:
     *
     *  * ['logger' => 'Psr\Log\LoggerInterface'] means the object provides a service named "logger" that implements Psr\Log\LoggerInterface
     *  * ['foo' => '?'] means the container provides service name "foo" of unspecified type
     *  * ['bar' => '?Bar\Baz'] means the container provides a service "bar" of type Bar\Baz|null
     *
     * @return array<string, string> The provided service types, keyed by service names
     */
    public function getProvidedServices(): array;
}

Directory Contents

Dirs: 2 × Files: 12

Name Size Perms Modified Actions
Attribute DIR
- drwxrwxrwx 2025-09-17 06:53:20
Edit Download
Test DIR
- drwxrwxrwx 2026-04-21 17:58:29
Edit Download
157 B lrw-rw-rw- 2025-09-17 06:53:19
Edit Download
1.12 KB lrw-rw-rw- 2025-09-17 06:53:19
Edit Download
6.74 KB lrw-r--r-- 2026-04-27 08:45:00
Edit Download
1.04 KB lrw-rw-rw- 2025-09-17 06:53:19
Edit Download
330 B lrw-rw-rw- 2025-09-17 06:53:19
Edit Download
1.01 KB lrw-rw-rw- 2025-09-17 06:53:19
Edit Download
626 B lrw-rw-rw- 2025-09-17 06:53:19
Edit Download
3.56 KB lrw-rw-rw- 2025-09-17 06:53:19
Edit Download
2.92 KB lrw-rw-rw- 2025-09-17 06:53:19
Edit Download
1.35 KB lrw-rw-rw- 2025-09-17 06:53:19
Edit Download
2.69 KB lrw-rw-rw- 2025-09-17 06:53:19
Edit Download
3.15 KB lrw-rw-rw- 2025-09-17 06:53:19
Edit Download

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