Browse Source

Correction of comment

Quentin Ligier 8 years ago
parent
commit
69fc864471
1 changed files with 2 additions and 2 deletions
  1. 2 2
      php/Modules/Settings.php

+ 2 - 2
php/Modules/Settings.php

@@ -222,10 +222,10 @@ final class Settings {
 	}
 
 	/**
-	 * @return array Returns the settings of Lychee.
+	 * @return array Returns the Imagick setting.
 	 */
 	public static function hasImagick() {
-		return (bool)(extension_loaded('imagick')&&self::get()['imagick']==='1');
+		return (bool)(extension_loaded('imagick') && self::get()['imagick'] === '1');
 	}
 
 }