Completed
Push — master ( fdf082...9ad6b1 )
by Kevin
08:56 queued 05:59
created
lib/Extractors/DateTime.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,9 @@
 block discarded – undo
53 53
         $max = false;
54 54
         $min = PHP_INT_MAX;
55 55
         foreach ($matchedParts as $part) {
56
-            if ($part === null) continue;
56
+            if ($part === null) {
57
+                continue;
58
+            }
57 59
             if ($part >= $max) {
58 60
                 $max = $part;
59 61
             }
Please login to merge, or discard this patch.
lib/Extractors/AbstractAddressExtractor.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
             $this->street1 = trim(array_shift($rows));
60 60
             $this->business = trim(array_shift($rows));
61 61
             //Easy
62
-        }else if (count($rows) == 1) {
62
+        } else if (count($rows) == 1) {
63 63
             $this->street1 = trim(array_shift($rows));
64 64
 
65 65
             // Not so easy
Please login to merge, or discard this patch.
lib/Cli/Command/AbstractApiEnablement.php 1 patch
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -2,13 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace Magium\Cli\Command;
4 4
 
5
-use Magium\InvalidConfigurationException;
6
-use Magium\NotFoundException;
7 5
 use Symfony\Component\Console\Command\Command;
8 6
 use Symfony\Component\Console\Input\ArrayInput;
9
-use Symfony\Component\Console\Input\InputArgument;
10 7
 use Symfony\Component\Console\Input\InputInterface;
11
-use Symfony\Component\Console\Input\InputOption;
12 8
 use Symfony\Component\Console\Output\OutputInterface;
13 9
 
14 10
 abstract class AbstractApiEnablement extends Command
Please login to merge, or discard this patch.
lib/Cli/Command/ApiEnable.php 1 patch
Unused Use Statements   -7 removed lines patch added patch discarded remove patch
@@ -2,14 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace Magium\Cli\Command;
4 4
 
5
-use Magium\InvalidConfigurationException;
6
-use Magium\NotFoundException;
7 5
 use Symfony\Component\Console\Command\Command;
8
-use Symfony\Component\Console\Input\ArrayInput;
9
-use Symfony\Component\Console\Input\InputArgument;
10
-use Symfony\Component\Console\Input\InputInterface;
11
-use Symfony\Component\Console\Input\InputOption;
12
-use Symfony\Component\Console\Output\OutputInterface;
13 6
 
14 7
 class ApiEnable extends AbstractApiEnablement
15 8
 {
Please login to merge, or discard this patch.
lib/Cli/Command/ApiPing.php 1 patch
Unused Use Statements   -5 removed lines patch added patch discarded remove patch
@@ -4,14 +4,9 @@
 block discarded – undo
4 4
 
5 5
 use Guzzle\Http\Client;
6 6
 use Magium\Cli\Command\Test\TestSkeleton;
7
-use Magium\InvalidConfigurationException;
8
-use Magium\NotFoundException;
9 7
 use Magium\Util\Api\ApiConfiguration;
10 8
 use Symfony\Component\Console\Command\Command;
11
-use Symfony\Component\Console\Input\ArrayInput;
12
-use Symfony\Component\Console\Input\InputArgument;
13 9
 use Symfony\Component\Console\Input\InputInterface;
14
-use Symfony\Component\Console\Input\InputOption;
15 10
 use Symfony\Component\Console\Output\OutputInterface;
16 11
 
17 12
 class ApiPing extends Command
Please login to merge, or discard this patch.
lib/Cli/Command/ApiDisable.php 1 patch
Unused Use Statements   -7 removed lines patch added patch discarded remove patch
@@ -2,14 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace Magium\Cli\Command;
4 4
 
5
-use Magium\InvalidConfigurationException;
6
-use Magium\NotFoundException;
7 5
 use Symfony\Component\Console\Command\Command;
8
-use Symfony\Component\Console\Input\ArrayInput;
9
-use Symfony\Component\Console\Input\InputArgument;
10
-use Symfony\Component\Console\Input\InputInterface;
11
-use Symfony\Component\Console\Input\InputOption;
12
-use Symfony\Component\Console\Output\OutputInterface;
13 6
 
14 7
 class ApiEnable extends AbstractApiEnablement
15 8
 {
Please login to merge, or discard this patch.