diff --git a/DependencyInjection/Configuration.php b/DependencyInjection/Configuration.php index a5fe3dcb..30846b11 100644 --- a/DependencyInjection/Configuration.php +++ b/DependencyInjection/Configuration.php @@ -186,26 +186,6 @@ public function getConfigTreeBuilder() ->ifTrue(function($v) { return isset($v['debug']); }) ->thenInvalid('The "debug" name cannot be used as it is reserved for the handler of the profiler') ->end() - ->setExample(array( - 'syslog' => array( - 'type' => 'stream', - 'path' => '/var/log/symfony.log', - 'level' => 'ERROR', - 'bubble' => 'false', - 'formatter' => 'my_formatter', - 'processors' => array('some_callable') - ), - 'main' => array( - 'type' => 'fingers_crossed', - 'action_level' => 'WARNING', - 'buffer_size' => 30, - 'handler' => 'custom', - ), - 'custom' => array( - 'type' => 'service', - 'id' => 'my_handler' - ) - )) ->end() ->end() ;