From 201d8dbfe836f94bcd923f3ba0dce20cfdda99ff Mon Sep 17 00:00:00 2001 From: Abdul Malik Ikhsan Date: Tue, 10 Apr 2018 21:46:23 +0700 Subject: [PATCH] remove commented code at ServiceManagerConfig::configureServiceManager() --- src/Service/ServiceManagerConfig.php | 29 ---------------------------- 1 file changed, 29 deletions(-) diff --git a/src/Service/ServiceManagerConfig.php b/src/Service/ServiceManagerConfig.php index dc1073a4e..2700bc19f 100644 --- a/src/Service/ServiceManagerConfig.php +++ b/src/Service/ServiceManagerConfig.php @@ -123,35 +123,6 @@ public function configureServiceManager(ServiceManager $services) { $this->config['services'][ServiceManager::class] = $services; - /* - printf("Configuration prior to configuring servicemanager:\n"); - foreach ($this->config as $type => $list) { - switch ($type) { - case 'aliases': - case 'delegators': - case 'factories': - case 'invokables': - case 'lazy_services': - case 'services': - case 'shared': - foreach (array_keys($list) as $name) { - printf(" %s (%s)\n", $name, $type); - } - break; - - case 'initializers': - case 'abstract_factories': - foreach ($list as $callable) { - printf(" %s (%s)\n", (is_object($callable) ? get_class($callable) : $callable), $type); - } - break; - - default: - break; - } - } - */ - // This is invoked as part of the bootstrapping process, and requires // the ability to override services. $services->setAllowOverride(true);