@@ -3,7 +3,7 @@ discard block |
||
3 | 3 | * File gathering functions |
4 | 4 | */ |
5 | 5 | |
6 | -if (! function_exists('type_exists')) { |
|
6 | +if (!function_exists('type_exists')) { |
|
7 | 7 | /** |
8 | 8 | * Checks if a type is a valid PHP one. |
9 | 9 | * |
@@ -27,14 +27,14 @@ discard block |
||
27 | 27 | } |
28 | 28 | } |
29 | 29 | |
30 | -if (! function_exists('later')) { |
|
30 | +if (!function_exists('later')) { |
|
31 | 31 | /** |
32 | 32 | * Create a deferred call chain in a functionnal way. |
33 | 33 | * |
34 | 34 | * @param string $class_type_interface_or_instance The expected target class/type/interface/instance |
35 | 35 | * @return \JClaveau\Async\DeferredCallChain |
36 | 36 | */ |
37 | - function later($class_type_interface_or_instance=null) |
|
37 | + function later($class_type_interface_or_instance = null) |
|
38 | 38 | { |
39 | 39 | return new \JClaveau\Async\DeferredCallChain(...func_get_args()); |
40 | 40 | } |