当前位置: 首页>>代码示例>>PHP>>正文


PHP Kernel::shutdown方法代码示例

本文整理汇总了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();
 }
开发者ID:acmephp,项目名称:symfony-bundle,代码行数:12,代码来源:FeatureContext.php

示例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();
     }
 }
开发者ID:victoire,项目名称:victoire,代码行数:16,代码来源:AppKernel.php

示例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);
 }
开发者ID:braincrafted,项目名称:static-site-bundle,代码行数:23,代码来源:RouteRenderer.php

示例4: _after

 public function _after(\Codeception\TestCase $test)
 {
     $this->kernel->shutdown();
     parent::_after($test);
 }
开发者ID:NaszvadiG,项目名称:ImageCMS,代码行数:5,代码来源:Symfony2.php

示例5: tearDownSymfonyKernel

 /**
  * @after
  */
 protected function tearDownSymfonyKernel()
 {
     if (null !== $this->kernel) {
         $this->kernel->shutdown();
     }
 }
开发者ID:CarnegieLearningWeb,项目名称:ldap-orm-bundle,代码行数:9,代码来源:SymfonyKernel.php

示例6: tearDown

 /**
  * @return null
  */
 public function tearDown()
 {
     $this->kernel->shutdown();
     parent::tearDown();
 }
开发者ID:uikolas,项目名称:LT-eshops-search,代码行数:8,代码来源:KernelAwareTest.php

示例7: tearDown

 public function tearDown()
 {
     $this->_kernel->shutdown();
 }
开发者ID:ehough,项目名称:emailerrors-bundle,代码行数:4,代码来源:MailTemplateTest.php


注:本文中的Symfony\Component\HttpKernel\Kernel::shutdown方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。