what are your thoughts on turning ContainerBuilder into a fluent interface so you can do something like ``` $builder = new ContainerBuilder(); $builder->useReflection(false) ->useAnotations(true) ->setCache( ...cache ); $container = $builder->build(); ```