Completed
Push — PHPCS-2-Test-Branch ( 36c0e6 )
by Michael
05:42
created
src/CliApplication.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
 	/**
30 30
 	 * CliApplication constructor.
31 31
 	 *
32
-	 * @param   Input\Cli  $input    The application's input object.
32
+	 * @param   Cli  $input    The application's input object.
33 33
 	 * @param   Registry   $config   The application's configuration.
34 34
 	 * @param   CliOutput  $output   The application's output object.
35 35
 	 * @param   Console    $console  The application's console object.
Please login to merge, or discard this patch.
src/Providers/CacheServiceProvider.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,14 +34,14 @@
 block discarded – undo
34 34
 
35 35
 					// If caching isn't enabled then just return a void cache
36 36
 					if (!$config->get('cache.enabled', false))
37
-    {
37
+	{
38 38
 						return new Cache\VoidCache;
39 39
 					}
40 40
 
41 41
 					$adapter = $config->get('cache.adapter', 'filesystem');
42 42
 
43 43
 					switch ($adapter)
44
-    {
44
+	{
45 45
 						case 'array':
46 46
 							$handler = new Cache\ArrayCache;
47 47
 
Please login to merge, or discard this patch.