Update to Drupal 8.1.0. For more information, see https://www.drupal.org/drupal-8.1.0-release-notes

This commit is contained in:
Pantheon Automation 2016-04-20 09:56:34 -07:00 committed by Greg Anderson
parent b11a755ba8
commit c0a0d5a94c
6920 changed files with 64395 additions and 57312 deletions
vendor/symfony/dependency-injection

View file

@ -32,6 +32,8 @@ interface ContainerInterface
/**
* Sets a service.
*
* Note: The $scope parameter is deprecated since version 2.8 and will be removed in 3.0.
*
* @param string $id The service identifier
* @param object $service The service instance
* @param string $scope The scope of the service
@ -94,6 +96,8 @@ interface ContainerInterface
* Enters the given scope.
*
* @param string $name
*
* @deprecated since version 2.8, to be removed in 3.0.
*/
public function enterScope($name);
@ -101,6 +105,8 @@ interface ContainerInterface
* Leaves the current scope, and re-enters the parent scope.
*
* @param string $name
*
* @deprecated since version 2.8, to be removed in 3.0.
*/
public function leaveScope($name);
@ -108,6 +114,8 @@ interface ContainerInterface
* Adds a scope to the container.
*
* @param ScopeInterface $scope
*
* @deprecated since version 2.8, to be removed in 3.0.
*/
public function addScope(ScopeInterface $scope);
@ -117,6 +125,8 @@ interface ContainerInterface
* @param string $name
*
* @return bool
*
* @deprecated since version 2.8, to be removed in 3.0.
*/
public function hasScope($name);
@ -128,6 +138,8 @@ interface ContainerInterface
* @param string $name
*
* @return bool
*
* @deprecated since version 2.8, to be removed in 3.0.
*/
public function isScopeActive($name);
}