execute() публичный Метод

public execute ( GraphAware\Common\Type\Node $input, Recommendations $recommendations, GraphAware\Reco4PHP\Engine\RecommendationEngine $recommendationEngine ) : GraphAware\Common\Result\ResultCollection
$input GraphAware\Common\Type\Node
$recommendations GraphAware\Reco4PHP\Result\Recommendations
$recommendationEngine GraphAware\Reco4PHP\Engine\RecommendationEngine
Результат GraphAware\Common\Result\ResultCollection
 private function doPostProcess(Node $input, Recommendations $recommendations, RecommendationEngine $engine)
 {
     $recommendations->getContext()->getStatistics()->startPostProcess();
     $postProcessResult = $this->postProcessExecutor->execute($input, $recommendations, $engine);
     foreach ($engine->getPostProcessors() as $postProcessor) {
         $tag = $postProcessor->name();
         $result = $postProcessResult->get($tag);
         $postProcessor->handleResultSet($input, $result, $recommendations);
     }
     $recommendations->getContext()->getStatistics()->stopPostProcess();
 }