Completed
Pull Request — master (#22)
by
unknown
02:13
created
src/eXpansion/Core/Storage/Data/Player.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -500,7 +500,7 @@
 block discarded – undo
500 500
     }
501 501
 
502 502
     /**
503
-     * @param \Maniaplanet\DedicatedServer\Structures\Player|array $data
503
+     * @param \Maniaplanet\DedicatedServer\Structures\PlayerInfo $data
504 504
      *
505 505
      * @return $this
506 506
      */
Please login to merge, or discard this patch.
src/eXpansion/Core/Services/Application.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,6 @@
 block discarded – undo
55 55
     /**
56 56
      * Initialize eXpansion.
57 57
      *
58
-     * @param OutputInterface $output
59 58
      * @return $this
60 59
      */
61 60
     public function init(ConsoleOutputInterface $console)
Please login to merge, or discard this patch.
src/eXpansion/Bundle/JoinLeaveMessages/Plugins/JoinLeaveMessages.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
      */
43 43
     public function onPlayerConnect(Player $player)
44 44
     {
45
-        $msg = '$fffHello, ' . $player->getNickName() . '  $n$fff($888' . $player->getLogin() . '$fff)';
45
+        $msg = '$fffHello, '.$player->getNickName().'  $n$fff($888'.$player->getLogin().'$fff)';
46 46
         if ($this->enabled) {
47 47
             $this->connection->chatSendServerMessage($msg);
48 48
         }
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
      */
54 54
     public function onPlayerDisconnect(Player $player, $disconnectionReason)
55 55
     {
56
-        $msg = '$fffSee you, ' . $player->getNickName() . '  $n$fff($888' . $player->getLogin() . '$fff)';
56
+        $msg = '$fffSee you, '.$player->getNickName().'  $n$fff($888'.$player->getLogin().'$fff)';
57 57
         if ($this->enabled) {
58 58
             $this->connection->chatSendServerMessage($msg);
59 59
         }
Please login to merge, or discard this patch.