Merge pull request #212 from beyondcode/analysis-bQVQ7A

Apply fixes from StyleCI
This commit is contained in:
Marcel Pociot
2021-05-28 16:52:32 +02:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -6,7 +6,6 @@ use App\Contracts\ConnectionManager as ConnectionManagerContract;
use App\Contracts\SubdomainGenerator;
use App\Http\QueryParameters;
use App\Server\Exceptions\NoFreePortAvailable;
use Illuminate\Support\Collection;
use Ratchet\ConnectionInterface;
use React\EventLoop\LoopInterface;
use React\Socket\Server;

View File

@@ -12,8 +12,8 @@ use Ratchet\ConnectionInterface;
use Ratchet\WebSocket\MessageComponentInterface;
use React\Promise\Deferred;
use React\Promise\PromiseInterface;
use stdClass;
use function React\Promise\reject;
use stdClass;
class ControlMessageController implements MessageComponentInterface
{
@@ -114,6 +114,7 @@ class ControlMessageController implements MessageComponentInterface
reject(null);
}
return $user;
})
->then(function ($user) use ($connection, $data) {