This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/tests/fixtures/Symfony/Components/DependencyInjection/php/services8.php

65 lines
1.3 KiB
PHP

<?php
use Symfony\Components\DependencyInjection\Container;
use Symfony\Components\DependencyInjection\Reference;
use Symfony\Components\DependencyInjection\Parameter;
/**
* ProjectServiceContainer
*
* This class has been auto-generated
* by the Symfony Dependency Injection Component.
*/
class ProjectServiceContainer extends Container
{
protected $shared = array();
/**
* Constructor.
*/
public function __construct()
{
parent::__construct();
$this->parameters = $this->getDefaultParameters();
}
/**
* Returns service ids for a given annotation.
*
* @param string $name The annotation name
*
* @return array An array of annotations
*/
public function findAnnotatedServiceIds($name)
{
static $annotations = array (
);
return isset($annotations[$name]) ? $annotations[$name] : array();
}
/**
* Gets the default parameters.
*
* @return array An array of the default parameters
*/
protected function getDefaultParameters()
{
return array(
'foo' => 'bar',
'bar' => 'foo is %foo bar',
'values' => array(
0 => true,
1 => false,
2 => NULL,
3 => 0,
4 => 1000.3,
5 => 'true',
6 => 'false',
7 => 'null',
),
);
}
}