]> BookStack Code Mirror - bookstack/blobdiff - app/Exceptions/NotFoundException.php
Opensearch: Fixed XML declaration when php short tags enabled
[bookstack] / app / Exceptions / NotFoundException.php
index 3c027dc449263a4e535c3cde09e4fcd45058abf4..016ee597f5528adeed9e40095bb3138777a30de0 100644 (file)
@@ -1,14 +1,14 @@
-<?php namespace BookStack\Exceptions;
+<?php
 
+namespace BookStack\Exceptions;
 
-class NotFoundException extends PrettyException {
-
+class NotFoundException extends PrettyException
+{
     /**
      * NotFoundException constructor.
-     * @param string $message
      */
     public function __construct($message = 'Item not found')
     {
         parent::__construct($message, 404);
     }
-}
\ No newline at end of file
+}