]> git.immae.eu Git - github/shaarli/Shaarli.git/blobdiff - application/formatter/FormatterFactory.php
Apply PHP Code Beautifier on source code for linter automatic fixes
[github/shaarli/Shaarli.git] / application / formatter / FormatterFactory.php
index a029579f6908f5452056d0db8db16a87c57ee5d4..bb865aedfb06023372813b64c9defcf4f49d1d1d 100644 (file)
@@ -41,7 +41,7 @@ class FormatterFactory
     public function getFormatter(string $type = null): BookmarkFormatter
     {
         $type = $type ? $type : $this->conf->get('formatter', 'default');
-        $className = '\\Shaarli\\Formatter\\Bookmark'. ucfirst($type) .'Formatter';
+        $className = '\\Shaarli\\Formatter\\Bookmark' . ucfirst($type) . 'Formatter';
         if (!class_exists($className)) {
             $className = '\\Shaarli\\Formatter\\BookmarkDefaultFormatter';
         }