@@ -25,13 +25,13 @@ |
||
| 25 | 25 | foreach ($bundles as $bundle) { |
| 26 | 26 | $reflection = new \ReflectionClass($bundle); |
| 27 | 27 | |
| 28 | - if (is_file($file = dirname($reflection->getFilename()) . '/Resources/config/expansion_defaults/core_config.yml')) { |
|
| 28 | + if (is_file($file = dirname($reflection->getFilename()).'/Resources/config/expansion_defaults/core_config.yml')) { |
|
| 29 | 29 | $config = Yaml::parse(file_get_contents(realpath($file))); |
| 30 | 30 | $container->prependExtensionConfig('e_xpansion_core', $config['e_xpansion_core']); |
| 31 | 31 | } |
| 32 | 32 | } |
| 33 | 33 | |
| 34 | - if (is_file($file = $container->getParameter('kernel.root_dir') . '/config/expansion.yml')) { |
|
| 34 | + if (is_file($file = $container->getParameter('kernel.root_dir').'/config/expansion.yml')) { |
|
| 35 | 35 | $config = Yaml::parse(file_get_contents(realpath($file))); |
| 36 | 36 | $container->prependExtensionConfig('e_xpansion_core', $config['e_xpansion_core']); |
| 37 | 37 | } |
@@ -76,7 +76,7 @@ |
||
| 76 | 76 | ); |
| 77 | 77 | $this->application->stopApplication(); |
| 78 | 78 | |
| 79 | - $process = new Process("bin/" . $scriptToExecute . " &"); |
|
| 79 | + $process = new Process("bin/".$scriptToExecute." &"); |
|
| 80 | 80 | $process->start(); |
| 81 | 81 | } |
| 82 | 82 | } |
| 83 | 83 | \ No newline at end of file |
@@ -140,7 +140,7 @@ discard block |
||
| 140 | 140 | $login = $manialink->getUserGroup()->getLogins()[0]; |
| 141 | 141 | |
| 142 | 142 | return array_map( |
| 143 | - function ($command) { |
|
| 143 | + function($command) { |
|
| 144 | 144 | /** @var AbstractChatCommand $command */ |
| 145 | 145 | return [ |
| 146 | 146 | 'command' => $command->getCommand(), |
@@ -151,7 +151,7 @@ discard block |
||
| 151 | 151 | }, |
| 152 | 152 | array_filter( |
| 153 | 153 | $this->chatCommands->getChatCommands(), |
| 154 | - function ($command) use ($login) { |
|
| 154 | + function($command) use ($login) { |
|
| 155 | 155 | if ($command instanceof AbstractAdminChatCommand) { |
| 156 | 156 | return $command->hasPermission($login); |
| 157 | 157 | } |
@@ -27,9 +27,9 @@ |
||
| 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 | |
@@ -98,15 +98,15 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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(), |
@@ -69,7 +69,7 @@ |
||
| 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 | |
@@ -92,9 +92,9 @@ |
||
| 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 | }); |
@@ -366,7 +366,7 @@ discard block |
||
| 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 |
||
| 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 = ""; |