]> git.immae.eu Git - github/shaarli/Shaarli.git/blobdiff - application/exceptions/IOException.php
Apply PHP Code Beautifier on source code for linter automatic fixes
[github/shaarli/Shaarli.git] / application / exceptions / IOException.php
index 18e46b77a2291999eb9b3ee8656de4c4cb17efe6..c1a9ffbe5bd41ac09dba84f3e6eb1132bce75706 100644 (file)
@@ -1,5 +1,9 @@
 <?php
 
+namespace Shaarli\Exceptions;
+
+use Exception;
+
 /**
  * Exception class thrown when a filesystem access failure happens
  */
@@ -17,6 +21,6 @@ class IOException extends Exception
     {
         $this->path = $path;
         $this->message = empty($message) ? t('Error accessing') : $message;
-        $this->message .= ' "' . $this->path .'"';
+        $this->message .= ' "' . $this->path . '"';
     }
 }