Browse Source

[core] Fix typos

logmanoriginal 7 years ago
parent
commit
14c689e7a3
3 changed files with 15 additions and 20 deletions
  1. 1 1
      caches/FileCache.php
  2. 14 16
      lib/error.php
  3. 0 3
      lib/validation.php

+ 1 - 1
caches/FileCache.php

@@ -14,7 +14,7 @@ class FileCache implements CacheInterface {
 	public function saveData($datas){
 		$writeStream = file_put_contents($this->getCacheFile(), json_encode($datas, JSON_PRETTY_PRINT));
 
-		if($writeStream === FALSE) {
+		if($writeStream === false) {
 			throw new \Exception("Cannot write the cache... Do you have the right permissions ?");
 		}
 

+ 14 - 16
lib/error.php

@@ -1,30 +1,28 @@
 <?php
 function returnError($message, $code){
-  throw new \HttpException($message, $code);
+	throw new \HttpException($message, $code);
 }
 
 function returnClientError($message){
-  returnError($message, 400);
+	returnError($message, 400);
 }
 
 function returnServerError($message){
-  returnError($message, 500);
+	returnError($message, 500);
 }
 
 function debugMessage($text){
-  if(!file_exists('DEBUG')) {
-    return;
-  }
+	if(!file_exists('DEBUG')) {
+		return;
+	}
 
-  $backtrace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 3);
-  $calling = $backtrace[2];
-  $message = $calling['file'] . ':'
-    . $calling['line'] . ' class '
-    . $calling['class'] . '->'
-    . $calling['function'] . ' - '
-    . $text;
+	$backtrace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 3);
+	$calling = $backtrace[2];
+	$message = $calling['file'] . ':'
+		. $calling['line'] . ' class '
+		. $calling['class'] . '->'
+		. $calling['function'] . ' - '
+		. $text;
 
-  error_log($message);
+	error_log($message);
 }
-
-?>

+ 0 - 3
lib/validation.php

@@ -53,7 +53,6 @@ function validateData(&$data,$parameters){
 		return $filteredValue;
 	};
 
-
 	if(!is_array($data))
 		return false;
 
@@ -99,5 +98,3 @@ function validateData(&$data,$parameters){
 
 	return true;
 }
-
-?>