Passed
Push — master ( 7b1612...01a2fd )
by WEBEWEB
05:11
created
Exception/AbstractHighchartsException.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -22,15 +22,15 @@
 block discarded – undo
22 22
  */
23 23
 abstract class AbstractHighchartsException extends Exception {
24 24
 
25
-	/**
26
-	 * Constructor.
27
-	 *
28
-	 * @param string $message The message.
29
-	 * @param integer $code The code.
30
-	 * @param Exception $previous The previous exception.
31
-	 */
32
-	public function __construct($message, $code = 0, Exception $previous = null) {
33
-		parent::__construct($message, $code, $previous);
34
-	}
25
+    /**
26
+     * Constructor.
27
+     *
28
+     * @param string $message The message.
29
+     * @param integer $code The code.
30
+     * @param Exception $previous The previous exception.
31
+     */
32
+    public function __construct($message, $code = 0, Exception $previous = null) {
33
+        parent::__construct($message, $code, $previous);
34
+    }
35 35
 
36 36
 }
Please login to merge, or discard this patch.
Exception/HighchartsFileNotFoundException.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -19,13 +19,13 @@
 block discarded – undo
19 19
  */
20 20
 final class HighchartsFileNotFoundException extends AbstractHighchartsException {
21 21
 
22
-	/**
23
-	 * Constructor.
24
-	 *
25
-	 * @param string $filename The file name.
26
-	 */
27
-	public function __construct($filename) {
28
-		parent::__construct("The file \"" . $filename . "\" was not found");
29
-	}
22
+    /**
23
+     * Constructor.
24
+     *
25
+     * @param string $filename The file name.
26
+     */
27
+    public function __construct($filename) {
28
+        parent::__construct("The file \"" . $filename . "\" was not found");
29
+    }
30 30
 
31 31
 }
Please login to merge, or discard this patch.