<?php

class FourOhFour extends AbstractController {
  
  public function
  get_methods () {
    return NULL;
  }
  
  public function
  default_method ($url) {
    header ("HTTP/1.1 Not Found");
    http_response_code (404);
    $this->load_view_raw ("header.php", ["page_title" => "404"]);
    echo "<h1> 404, Not found. </h1>";
    echo "Could not find " . $url;
    $this->load_view_raw ("footer.php");
  }
  
}
