PageNotFound.php 359 B

123456789101112131415
  1. <?php
  2. namespace ThurData\Servers\KerioEmail\Core\Http\Admin;
  3. use ThurData\Servers\KerioEmail\Core\Http\AbstractController;
  4. class PageNotFound extends AbstractController
  5. {
  6. public function index()
  7. {
  8. $pageControler = new \ThurData\Servers\KerioEmail\Core\App\Controllers\Http\PageNotFound();
  9. return $pageControler->execute();
  10. }
  11. }