Completed
Push — PHPCS-2-Test-Branch ( 36c0e6 )
by Michael
05:42
created
src/Console.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -2,9 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Stats;
4 4
 
5
-use Joomla\Application\Cli\ColorStyle;
6
-use Joomla\Application\Cli\Output\Processor\ColorProcessor;
7
-use Joomla\Controller\AbstractController;
8 5
 use Joomla\DI\ContainerAwareInterface;
9 6
 use Joomla\DI\ContainerAwareTrait;
10 7
 
Please login to merge, or discard this patch.
src/Providers/MonologServiceProvider.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,6 @@
 block discarded – undo
8 8
 use Monolog\Logger;
9 9
 use Monolog\Processor\PsrLogMessageProcessor;
10 10
 use Monolog\Processor\WebProcessor;
11
-use Psr\Log\LoggerInterface;
12 11
 
13 12
 /**
14 13
  * Monolog service provider
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.