Completed
Push — master ( 3c1244...38faae )
by Timothy
03:43
created
src/Aviat/AnimeClient/AnimeClient.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
81 81
 	 *
82 82
 	 * @param string $file
83 83
 	 * @param mixed $data
84
-	 * @return bool
84
+	 * @return integer
85 85
 	 */
86 86
 	public static function json_file_encode($file, $data)
87 87
 	{
Please login to merge, or discard this patch.
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -70,10 +70,10 @@
 block discarded – undo
70 70
 	 */
71 71
 	public static function json_file_decode($file, $as_array=TRUE)
72 72
 	{
73
-	    return json_decode(
74
-	        file_get_contents($file),
75
-	        $as_array
76
-	    );
73
+		return json_decode(
74
+			file_get_contents($file),
75
+			$as_array
76
+		);
77 77
 	}
78 78
 
79 79
 	/**
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
 	 * @param  bool $as_array
69 69
 	 * @return array|object
70 70
 	 */
71
-	public static function json_file_decode($file, $as_array=TRUE)
71
+	public static function json_file_decode($file, $as_array = TRUE)
72 72
 	{
73 73
 	    return json_decode(
74 74
 	        file_get_contents($file),
Please login to merge, or discard this patch.