Completed
Push — master ( db89a0...661260 )
by
unknown
02:00
created
src/Builder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
 
25 25
 	protected function callFunc($callback, $option)
26 26
 	{
27
-		if (! $callback instanceof Closure)
27
+		if (!$callback instanceof Closure)
28 28
 		{
29 29
 			throw new CallbackNotValidException();
30 30
 		}
Please login to merge, or discard this patch.
src/Series.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
 	{
18 18
 		$availableTypes = array_keys($this->config['available_types']);
19 19
 
20
-		if (! in_array($type, $availableTypes)) {
20
+		if (!in_array($type, $availableTypes)) {
21 21
 			throw new UnavailableSerieException;
22 22
 		}
23 23
 
Please login to merge, or discard this patch.
src/Options.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
 	{
18 18
 		$availableTypes = array_keys($this->config['available_types']);
19 19
 
20
-		if (! in_array($type, $availableTypes)) {
20
+		if (!in_array($type, $availableTypes)) {
21 21
 			throw new UnavailableOptionException;
22 22
 		}
23 23
 
Please login to merge, or discard this patch.