You are here

public function ContainerInterface::set in Service Container 7.2

Same name in this branch
  1. 7.2 lib/Symfony/Component/DependencyInjection/ContainerInterface.php \Symfony\Component\DependencyInjection\ContainerInterface::set()
  2. 7.2 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/ContainerInterface.php \Symfony\Component\DependencyInjection\ContainerInterface::set()
Same name and namespace in other branches
  1. 7 lib/Symfony/Component/DependencyInjection/ContainerInterface.php \Symfony\Component\DependencyInjection\ContainerInterface::set()
  2. 7 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/ContainerInterface.php \Symfony\Component\DependencyInjection\ContainerInterface::set()

Sets a service.

@api

Parameters

string $id The service identifier:

object $service The service instance:

string $scope The scope of the service:

File

lib/Symfony/Component/DependencyInjection/ContainerInterface.php, line 43

Class

ContainerInterface
ContainerInterface is the interface implemented by service container classes.

Namespace

Symfony\Component\DependencyInjection

Code

public function set($id, $service, $scope = self::SCOPE_CONTAINER);