]> BookStack Code Mirror - bookstack/blobdiff - app/Exceptions/NotFoundException.php
Add base64 image support
[bookstack] / app / Exceptions / NotFoundException.php
index 3c027dc449263a4e535c3cde09e4fcd45058abf4..94a4054152b6e9a1c3ad1e78d622ad1b0136eac0 100644 (file)
@@ -1,14 +1,13 @@
 <?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
+}