Completed
Push — master ( 4d81b0...b0c37d )
by
unknown
02:03
created
src/Builder.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
 
30 30
 	public function make($callback)
31 31
 	{
32
-		if (! $this->class) {
32
+		if (!$this->class) {
33 33
 			throw new BuilderNotReadyException;
34 34
 		}
35 35
 
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
 
41 41
 	protected function callFunc($callback, $option)
42 42
 	{
43
-		if (! $callback instanceof Closure)
43
+		if (!$callback instanceof Closure)
44 44
 		{
45 45
 			throw new CallbackNotValidException();
46 46
 		}
Please login to merge, or discard this patch.
src/Chart.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
 	{
27 27
 		$availableTypes = array_keys($this->config['options']['available_types']);
28 28
 
29
-		if (! in_array($type, $availableTypes)) {
29
+		if (!in_array($type, $availableTypes)) {
30 30
 			throw new UnavailableOptionException;
31 31
 		}
32 32
 
Please login to merge, or discard this patch.