Completed
Push — master ( 386126...b533b6 )
by Krzysztof
05:30 queued 02:51
created
src/KrzysiekPiasecki/BurzeDzisNet/CLI/BurzeDzisNetApplication.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,6 @@
 block discarded – undo
10 10
 use KrzysiekPiasecki\BurzeDzisNet\BurzeDzisNet;
11 11
 use KrzysiekPiasecki\BurzeDzisNet\Endpoint;
12 12
 use Symfony\Component\Console\Application;
13
-use Symfony\Component\Console\Input\InputInterface;
14 13
 
15 14
 /**
16 15
  * BurzeDzisNet CLI application
Please login to merge, or discard this patch.
src/KrzysiekPiasecki/BurzeDzisNet/CLI/LocatingCommand.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,6 @@
 block discarded – undo
11 11
 
12 12
 namespace KrzysiekPiasecki\BurzeDzisNet\CLI;
13 13
 
14
-use KrzysiekPiasecki\BurzeDzisNet\Point;
15 14
 use Symfony\Component\Console\Command\Command;
16 15
 use Symfony\Component\Console\Input\InputArgument;
17 16
 use Symfony\Component\Console\Input\InputInterface;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@
 block discarded – undo
78 78
                 );
79 79
 
80 80
             }
81
-        } catch(Throwable $e) {
81
+        } catch (Throwable $e) {
82 82
             var_dump($e->getMessage());
83 83
             $output->writeln(
84 84
                 '<error>Runtime exception</error>'
Please login to merge, or discard this patch.
src/Component/Remote/BurzeDzisNet/WeatherAlert.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
      */
45 45
     public function __construct(WeatherAlert $alert = null)
46 46
     {
47
-        $this->alerts = ($alert != null) ? $alert->toArray() :  [];
47
+        $this->alerts = ($alert != null) ? $alert->toArray() : [];
48 48
     }
49 49
 
50 50
     /**
Please login to merge, or discard this patch.
tests/bootstrap.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
  * file that was distributed with this source code.
6 6
  */
7 7
 
8
-spl_autoload_register(function ($className) {
8
+spl_autoload_register(function($className) {
9 9
     if (class_exists($className) === true) {
10 10
         return;
11 11
     }
Please login to merge, or discard this patch.