Example #1
0
 public function createIndexerContainer(Project $project, $path, $contents = '')
 {
     $container = new Container($project->getProjectContainer());
     $container->set('file', new SourceFile($container, $path, $contents));
     foreach ($this->plugins as $plugin) {
         $plugin->addIndexerComponents($container, $this->options);
     }
     return $container;
 }