diff --git a/StorageBundle/DependencyInjection/StorageExtension.php b/StorageBundle/DependencyInjection/StorageExtension.php index 8fb8089..bd49595 100644 --- a/StorageBundle/DependencyInjection/StorageExtension.php +++ b/StorageBundle/DependencyInjection/StorageExtension.php @@ -22,8 +22,6 @@ class StorageExtension extends Extension $configuration = $this->getConfiguration($configs, $container); $config = $this->processConfiguration($configuration, $configs); - dump($config); die; - return $config; } diff --git a/StorageBundle/Storage.php b/StorageBundle/Storage.php index 13fe24c..2be6040 100644 --- a/StorageBundle/Storage.php +++ b/StorageBundle/Storage.php @@ -15,7 +15,7 @@ class Storage // TODO: on récupère les infos sur ce storage dans la config utilisateur (config/bluesquare/storage.yaml) // La clef pour la configuration d'un storage devrait être : "storage.{storage_name}" - dump($storage_name); die; +// dump($this); die; // Si storage.{storage_name}.type == 's3' alors : // return new S3Storage($storage_name, $config); // $config c'est le contenu de storage.{storage_name} sous forme de tableau diff --git a/StorageBundle/StorageBundle.php b/StorageBundle/StorageBundle.php index 033f356..e831503 100644 --- a/StorageBundle/StorageBundle.php +++ b/StorageBundle/StorageBundle.php @@ -11,6 +11,7 @@ class StorageBundle extends Bundle public function build(ContainerBuilder $container) { parent::build($container); + dump($container); die; } public function getContainerExtension()