]> git.immae.eu Git - github/shaarli/Shaarli.git/blobdiff - application/bookmark/exception/NotWritableDataStoreException.php
Apply PHP Code Beautifier on source code for linter automatic fixes
[github/shaarli/Shaarli.git] / application / bookmark / exception / NotWritableDataStoreException.php
index 95f34b505fdfcd028bf90c004a0f72c7ec5f0640..df91f3bce9c25c3101aac855ef99cbdbaa700406 100644 (file)
@@ -1,9 +1,7 @@
 <?php
 
-
 namespace Shaarli\Bookmark\Exception;
 
-
 class NotWritableDataStoreException extends \Exception
 {
     /**
@@ -13,7 +11,7 @@ class NotWritableDataStoreException extends \Exception
      */
     public function __construct($dataStore)
     {
-        $this->message = 'Couldn\'t load data from the data store file "'. $dataStore .'". '.
+        $this->message = 'Couldn\'t load data from the data store file "' . $dataStore . '". ' .
             'Your data might be corrupted, or your file isn\'t readable.';
     }
 }