You are here

public function Definition::setPublic in Service Container 7.2

Same name and namespace in other branches
  1. 7 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Definition.php \Symfony\Component\DependencyInjection\Definition::setPublic()

Sets the visibility of this service.

@api

Parameters

bool $boolean:

Return value

Definition The current instance

1 call to Definition::setPublic()
DefinitionDecorator::setPublic in modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/DefinitionDecorator.php
@api
1 method overrides Definition::setPublic()
DefinitionDecorator::setPublic in modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/DefinitionDecorator.php
@api

File

modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Definition.php, line 637

Class

Definition
Definition represents a service definition.

Namespace

Symfony\Component\DependencyInjection

Code

public function setPublic($boolean) {
  $this->public = (bool) $boolean;
  return $this;
}