Skip to content
This repository was archived by the owner on Feb 7, 2024. It is now read-only.

Apply fixes from StyleCI #470

Merged
merged 1 commit into from
Aug 18, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Apps/AppManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

interface AppManager
{
/**
/**
* Get all apps.
*
* @return array[\BeyondCode\LaravelWebSockets\Apps\App]
Expand Down
2 changes: 0 additions & 2 deletions src/Apps/ConfigAppManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

namespace BeyondCode\LaravelWebSockets\Apps;

use Illuminate\Support\Collection;

class ConfigAppManager implements AppManager
{
/**
Expand Down
2 changes: 1 addition & 1 deletion src/Server/Logger/ConnectionLogger.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class ConnectionLogger extends Logger implements ConnectionInterface
* Create a new instance and add a connection to watch.
*
* @param \Ratchet\ConnectionInterface $connection
* @return Self
* @return self
*/
public static function decorate(ConnectionInterface $app): self
{
Expand Down
2 changes: 1 addition & 1 deletion src/Server/Logger/HttpLogger.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class HttpLogger extends Logger implements MessageComponentInterface
* Create a new instance and add the app to watch.
*
* @param \Ratchet\MessageComponentInterface $app
* @return Self
* @return self
*/
public static function decorate(MessageComponentInterface $app): self
{
Expand Down
2 changes: 1 addition & 1 deletion src/Server/Logger/WebsocketsLogger.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class WebsocketsLogger extends Logger implements MessageComponentInterface
* Create a new instance and add the app to watch.
*
* @param \Ratchet\MessageComponentInterface $app
* @return Self
* @return self
*/
public static function decorate(MessageComponentInterface $app): self
{
Expand Down
2 changes: 1 addition & 1 deletion src/Statistics/Events/StatisticsUpdated.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class StatisticsUpdated implements ShouldBroadcast
use SerializesModels;

/**
* The statistic instance that got updated
* The statistic instance that got updated.
*
* @var \BeyondCode\LaravelWebSockets\Statistics\Models\WebSocketsStatisticsEntry
*/
Expand Down