Completed
Push — master ( ff3199...9ab95e )
by De Cramer
9s
created
src/eXpansion/Framework/Gui/Layouts/LayoutRow.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -133,7 +133,7 @@
 block discarded – undo
133 133
         $frame->setAlign($this->hAlign, $this->vAlign);
134 134
         $frame->setPosition($this->startX, $this->startY);
135 135
         $frame->addClasses($this->frameClasses);
136
-       // $frame->setSize($this->getWidth(), $this->getHeight());
136
+        // $frame->setSize($this->getWidth(), $this->getHeight());
137 137
 
138 138
         $startY = 0;
139 139
 
Please login to merge, or discard this patch.
Framework/Core/DependencyInjection/Compiler/GameTitleFetchPass.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,9 +27,9 @@
 block discarded – undo
27 27
      */
28 28
     public function process(ContainerBuilder $container)
29 29
     {
30
-        $fileSytem = new Filesystem(new Local(realpath($container->getParameter('kernel.root_dir') . "/../var")));
30
+        $fileSytem = new Filesystem(new Local(realpath($container->getParameter('kernel.root_dir')."/../var")));
31 31
         $fileSytem->createDir('expansion');
32
-        $fileSytem = new Filesystem(new Local(realpath($container->getParameter('kernel.root_dir') . "/../var/expansion")));
32
+        $fileSytem = new Filesystem(new Local(realpath($container->getParameter('kernel.root_dir')."/../var/expansion")));
33 33
 
34 34
         $this->fetchDataFromRemote($fileSytem, $container);
35 35
 
Please login to merge, or discard this patch.
src/eXpansion/Framework/Core/Plugins/Analytics.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -98,15 +98,15 @@  discard block
 block discarded – undo
98 98
      */
99 99
     protected function handshake()
100 100
     {
101
-        $key =        &$this->key;
102
-        $lastPing =   &$this->lastPing;
101
+        $key = &$this->key;
102
+        $lastPing = &$this->lastPing;
103 103
         $that = $this;
104 104
         $logger = $this->logger;
105 105
 
106 106
         $query = http_build_query(
107 107
             ['page' => 'handshake', 'server-login' => $this->gameData->getSystemInfo()->serverLogin]
108 108
         );
109
-        $url = $this->url . '?' . $query;
109
+        $url = $this->url.'?'.$query;
110 110
 
111 111
         $lastPing = time();
112 112
         $this->logger->debug("[eXpansion analytics]Starting handshake");
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
 
115 115
         $this->http->get(
116 116
             $url,
117
-            function (HttpResult $result) use (&$key, &$lastPing, $logger, $that) {
117
+            function(HttpResult $result) use (&$key, &$lastPing, $logger, $that) {
118 118
                 $key = null;
119 119
 
120 120
                 if ($result->getHttpCode() != '200') {
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
         $query = http_build_query(
158 158
             $data
159 159
         );
160
-        $url = $this->url . '?' . $query;
160
+        $url = $this->url.'?'.$query;
161 161
 
162 162
         $this->operationInProgress = true;
163 163
         $this->lastPing = time();
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
         $logger->debug('[eXpansion analytics]Starting ping');
169 169
         $this->http->get(
170 170
             $url,
171
-            function (HttpResult $result) use (&$operationInProgress, &$key, $logger) {
171
+            function(HttpResult $result) use (&$operationInProgress, &$key, $logger) {
172 172
                 if ($result->getHttpCode() == '200') {
173 173
                     $operationInProgress = false;
174 174
                     $logger->debug('[eXpansion analytics]Ping successfull');
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
             'memory' => memory_get_usage(),
199 199
             'memory_peak' => memory_get_peak_usage(),
200 200
             'build' => '',
201
-            'title' => str_replace('@','_by_', $this->gameData->getVersion()->titleId),
201
+            'title' => str_replace('@', '_by_', $this->gameData->getVersion()->titleId),
202 202
             'game' => $this->gameData->getTitle(),
203 203
             'mode' => strtolower($this->gameData->getGameInfos()->scriptName),
204 204
             'serverOs' => $this->gameData->getServerOs(),
Please login to merge, or discard this patch.
src/eXpansion/Bundle/VoteManager/Plugins/Gui/Widget/VoteWidgetFactory.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,6 @@
 block discarded – undo
7 7
 use eXpansion\Framework\Core\Model\Gui\Widget;
8 8
 use eXpansion\Framework\Core\Model\Gui\WidgetFactoryContext;
9 9
 use eXpansion\Framework\Core\Plugins\Gui\WidgetFactory;
10
-use eXpansion\Framework\Gui\Builders\WidgetBackground;
11 10
 use eXpansion\Framework\Gui\Components\Animation;
12 11
 use eXpansion\Framework\Gui\Components\Button;
13 12
 use eXpansion\Framework\Gui\Components\Label;
Please login to merge, or discard this patch.
src/eXpansion/Framework/Gui/Components/Button.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
         $buttonFrame = new Frame();
70 70
         $buttonFrame->setAlign("center", "center")
71 71
             ->setPosition($this->posX + ($this->width / 2), $this->posY - ($this->height / 2), $this->posZ)
72
-            ->addClasses(['uiContainer', 'uiButton']+$this->_classes)
72
+            ->addClasses(['uiContainer', 'uiButton'] + $this->_classes)
73 73
             ->addDataAttribute("action", $this->action)
74 74
             ->setScale($this->scale);
75 75
 
Please login to merge, or discard this patch.
src/eXpansion/Framework/Core/ChatCommand/UpdateExpansion.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -4,8 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use eXpansion\Framework\AdminGroups\Model\AbstractAdminChatCommand;
6 6
 use eXpansion\Framework\Core\Helpers\ChatNotification;
7
-use eXpansion\Framework\Core\Services\Application;
8
-use eXpansion\Framework\Core\Storage\PlayerStorage;
9 7
 use Symfony\Component\Console\Input\InputInterface;
10 8
 
11 9
 /**
Please login to merge, or discard this patch.
src/eXpansion/Framework/Core/Command/UpdateCommand.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -89,6 +89,9 @@
 block discarded – undo
89 89
         }
90 90
     }
91 91
 
92
+    /**
93
+     * @param string $command
94
+     */
92 95
     protected function runCommand($command, $playerLogin, SymfonyStyle $sfs)
93 96
     {
94 97
         $process = new Process($command);
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -92,9 +92,9 @@
 block discarded – undo
92 92
     protected function runCommand($command, $playerLogin, SymfonyStyle $sfs)
93 93
     {
94 94
         $process = new Process($command);
95
-        $process->setWorkingDirectory($this->getContainer()->getParameter('kernel.root_dir') . '/..');
95
+        $process->setWorkingDirectory($this->getContainer()->getParameter('kernel.root_dir').'/..');
96 96
 
97
-        $process->run(function ($type, $buffer) use ($playerLogin, $sfs) {
97
+        $process->run(function($type, $buffer) use ($playerLogin, $sfs) {
98 98
             $this->notifyPlayer($type, $buffer, $playerLogin);
99 99
             $sfs->writeln($buffer);
100 100
         });
Please login to merge, or discard this patch.
src/eXpansion/Framework/Core/Storage/GameDataStorage.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
 
147 147
     /**
148 148
      * Get titlepack name such as TMStadium@nadeo
149
-     * @return mixed
149
+     * @return string
150 150
      */
151 151
     public function getTitle()
152 152
     {
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
     }
187 187
 
188 188
     /**
189
-     * @param Systeminfos $systemInfo
189
+     * @param SystemInfos $systemInfo
190 190
      */
191 191
     public function setSystemInfo(Systeminfos $systemInfo)
192 192
     {
Please login to merge, or discard this patch.
src/eXpansion/Bundle/Maps/Plugins/Gui/ManiaExchangeWindowFactory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -366,7 +366,7 @@  discard block
 block discarded – undo
366 366
             "difficulties" => $this->difficultiesBox->getSelectedValue(),
367 367
             "tpack" => $this->tpackBox->getSelectedValue(),
368 368
         ];
369
-        $manialink->setData("params", (object)$params);
369
+        $manialink->setData("params", (object) $params);
370 370
 
371 371
     }
372 372
 
@@ -419,7 +419,7 @@  discard block
 block discarded – undo
419 419
     public function callbackSearch(ManialinkInterface $manialink, $login, $params, $arguments)
420 420
     {
421 421
 
422
-        $params = (object)$params;
422
+        $params = (object) $params;
423 423
         $manialink->setData('params', $params);
424 424
 
425 425
         $options = "";
Please login to merge, or discard this patch.