vendor/galilee/pimcore-migrations/DependencyInjection/Configuration.php line 21

Open in your IDE?
  1. <?php
  2. namespace Galilee\MigrationsBundle\DependencyInjection;
  3. use Symfony\Component\Config\Definition\Builder\TreeBuilder;
  4. use Symfony\Component\Config\Definition\ConfigurationInterface;
  5. /**
  6.  * This is the class that validates and merges configuration from your app/config files.
  7.  *
  8.  * To learn more see {@link http://symfony.com/doc/current/cookbook/bundles/configuration.html}
  9.  */
  10. class Configuration implements ConfigurationInterface
  11. {
  12.     /**
  13.      * {@inheritdoc}
  14.      */
  15.     public function getConfigTreeBuilder()
  16.     {
  17.         $treeBuilder = new TreeBuilder();
  18.         $rootNode $treeBuilder->root('galilee_migrations');
  19.         // Here you should define the parameters that are allowed to
  20.         // configure your bundle. See the documentation linked above for
  21.         // more information on that topic.
  22.         return $treeBuilder;
  23.     }
  24. }