vendor/yectep/phpspreadsheet-bundle/src/DependencyInjection/Configuration.php line 22

Open in your IDE?
  1. <?php
  2. namespace Yectep\PhpSpreadsheetBundle\DependencyInjection;
  3. use Symfony\Component\Config\Definition\Builder\TreeBuilder;
  4. use Symfony\Component\Config\Definition\ConfigurationInterface;
  5. /**
  6.  * Configures the class with standard options.
  7.  *
  8.  * @package Yectep\PhpSpreadsheetBundle\DependencyInjection
  9.  */
  10. class Configuration implements ConfigurationInterface
  11. {
  12.     /**
  13.      * @inheritdoc
  14.      */
  15.     public function getConfigTreeBuilder()
  16.     {
  17.         $builder = new TreeBuilder();
  18.         $builder->root('yectep_phpoffice');
  19.         return $builder;
  20.     }
  21. }