/**
  * (non-PHPdoc)
  * @see Bonder\Controllers.ControllerProvider::getResult()
  */
 public function getResult($uri)
 {
     $result = $this->valueFinder->getFirstValue($uri);
     if (is_null($result)) {
         return null;
     }
     return new \Bonder\Controllers\ControllerProviderResult($result->getValue(), $result->getVariables());
 }