/**
  * @param DrupalInterface $drupal
  */
 public function buildResponse(DrupalInterface $drupal)
 {
     if ($drupal->is404()) {
         $drupal->disableResponse();
         return;
     }
     if ($drupal->isFound()) {
         $drupal->buildContent();
     }
     $drupal->render();
 }
 /**
  * @param DrupalInterface $drupal
  */
 public function buildResponse(DrupalInterface $drupal)
 {
     $drupal->disableResponse();
 }