本文整理汇总了PHP中Symfony\Component\HttpKernel\Kernel::shutdown方法的典型用法代码示例。如果您正苦于以下问题:PHP Kernel::shutdown方法的具体用法?PHP Kernel::shutdown怎么用?PHP Kernel::shutdown使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Symfony\Component\HttpKernel\Kernel
的用法示例。
在下文中一共展示了Kernel::shutdown方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: theFollowingAcmePhpConfiguration
/**
* @Given the following acme_php configuration:
*/
public function theFollowingAcmePhpConfiguration(PyStringNode $rawConfig)
{
$yaml = new Yaml();
$config = ['acme_php' => array_merge($this->getDefaultConfig(), $yaml->parse($rawConfig->getRaw()))];
$this->filesystem->dumpFile($this->acmeConfigPath, $yaml->dump($config, 4));
$this->kernel->shutdown();
$this->filesystem->remove($this->kernel->getCacheDir());
$this->kernel->boot();
}
示例2: shutdown
/**
* {@inheritdoc}
*/
public function shutdown()
{
if ($this->environment === 'ci') {
if (false === $this->booted) {
return;
}
$container = $this->container;
parent::shutdown();
$this->cleanupContainer($container);
} else {
parent::shutdown();
}
}
示例3: renderWithParameters
/**
* Renders the given route with the given parameter.
*
* @param Route $route Route.
* @param string $name Name of the route; the default value is `null`.
* @param array $parameter Array of parameters; the default value is an empty array.
*
* @return void
*/
protected function renderWithParameters(Route $route, $name = null, array $parameter = array())
{
$request = $this->buildRequest($route, $name, $parameter);
$response = $this->kernel->handle($request);
$content = $response->getContent();
$this->kernel->terminate($request, $response);
$this->kernel->shutdown();
if (null !== $name) {
$filename = $this->router->generate($name, $parameter);
} else {
$filename = $route->getPath();
}
$this->writer->write($filename, $content);
}
示例4: _after
public function _after(\Codeception\TestCase $test)
{
$this->kernel->shutdown();
parent::_after($test);
}
示例5: tearDownSymfonyKernel
/**
* @after
*/
protected function tearDownSymfonyKernel()
{
if (null !== $this->kernel) {
$this->kernel->shutdown();
}
}
示例6: tearDown
/**
* @return null
*/
public function tearDown()
{
$this->kernel->shutdown();
parent::tearDown();
}
示例7: tearDown
public function tearDown()
{
$this->_kernel->shutdown();
}