當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Application::keys方法代碼示例

本文整理匯總了PHP中Silex\Application::keys方法的典型用法代碼示例。如果您正苦於以下問題:PHP Application::keys方法的具體用法?PHP Application::keys怎麽用?PHP Application::keys使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Silex\Application的用法示例。


在下文中一共展示了Application::keys方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: testItCanBeRegisteredAndBooted

 public function testItCanBeRegisteredAndBooted()
 {
     $restProvider = new RestProvider();
     $app = new Application();
     $defaultServices = $app->keys();
     $app->register($restProvider);
     $app->boot();
     $definedByProvider = array_values(array_diff($app->keys(), $defaultServices));
     $expectedServices = ['alchemy_rest.debug', 'alchemy_rest.fractal_manager', 'alchemy_rest.transformers_registry', 'alchemy_rest.array_transformer', 'alchemy_rest.exception_transformer', 'alchemy_rest.exception_listener', 'alchemy_rest.date_parser.timezone', 'alchemy_rest.date_parser.format', 'alchemy_rest.date_parser', 'alchemy_rest.date_request_listener', 'alchemy_rest.paginate_options.offset_parameter', 'alchemy_rest.paginate_options.limit_parameter', 'alchemy_rest.paginate_options_factory', 'alchemy_rest.paginate_request_listener', 'alchemy_rest.sort_options.sort_parameter', 'alchemy_rest.sort_options.direction_parameter', 'alchemy_rest.sort_options.multi_sort_parameter', 'alchemy_rest.sort_options_factory', 'alchemy_rest.sort_request_listener', 'alchemy_rest.transform_response_listener'];
     $undefinedServices = array_diff($expectedServices, $definedByProvider);
     $this->assertEquals([], $undefinedServices);
 }
開發者ID:bburnichon,項目名稱:rest-bundle,代碼行數:12,代碼來源:RestProviderTest.php

示例2: connect

 /**
  * Returns routes to connect to the given application.
  *
  * @param Application $app An Application instance
  *
  * @return ControllerCollection A ControllerCollection instance
  */
 public function connect(Application $app)
 {
     /** @var ControllerCollection $controllers */
     $controllers = $app['controllers_factory'];
     $controllers->get('/', function () use($app) {
         $keys = $app->keys();
         sort($keys);
         $doc = array();
         foreach ($keys as $key) {
             try {
                 $val = $app[$key];
                 if (is_scalar($val)) {
                     $doc[$key] = array('Scalar', var_export($val, true));
                 } elseif (is_array($val)) {
                     $doc[$key] = array('Array', count($val));
                 } elseif (is_object($val)) {
                     $doc[$key] = array('Object', get_class($val));
                 } else {
                 }
             } catch (\Exception $e) {
                 $doc[$key] = array('Exception', $e->getMessage());
             }
         }
         ob_start();
         require __DIR__ . "/../../../templates/containerdoc.html";
         return ob_get_clean();
     });
     return $controllers;
 }
開發者ID:iakio,項目名稱:silex-containerdoc,代碼行數:36,代碼來源:ContainerDocProvider.php

示例3: assertRequiredKeysExist

 /**
  * @param Application $app
  *
  * @throws \RuntimeException
  *
  * @return void
  */
 protected function assertRequiredKeysExist(Application $app)
 {
     $required = ['path.base'];
     $missingKeys = array_diff($required, $app->keys());
     if (false === empty($missingKeys)) {
         $message = 'Missing required config parameters (' . implode(', ', $missingKeys) . ')';
         throw new \RuntimeException($message);
     }
 }
開發者ID:jtallant,項目名稱:skimpy-engine,代碼行數:16,代碼來源:SkimpyProvider.php

示例4: canResolve

 public function canResolve($name)
 {
     return in_array($name, $this->app->keys());
 }
開發者ID:jildertmiedema,項目名稱:commander,代碼行數:4,代碼來源:Resolver.php


注:本文中的Silex\Application::keys方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。