Merge pull request #126 from beyondcode/analysis-jLM5eJ

Apply fixes from StyleCI
This commit is contained in:
Marcel Pociot
2020-09-08 08:28:41 +02:00
committed by GitHub
3 changed files with 3 additions and 3 deletions

View File

@@ -4,5 +4,4 @@ namespace App\Server\Exceptions;
class NoFreePortAvailable extends \Exception class NoFreePortAvailable extends \Exception
{ {
} }

View File

@@ -130,6 +130,7 @@ class ControlMessageController implements MessageComponentInterface
], ],
])); ]));
$connection->close(); $connection->close();
return; return;
} }

View File

@@ -166,7 +166,7 @@ return [
*/ */
'tcp_port_range' => [ 'tcp_port_range' => [
'from' => 50000, 'from' => 50000,
'to' => 60000 'to' => 60000,
], ],
/* /*
@@ -251,7 +251,7 @@ return [
'custom_subdomain_unauthorized' => 'You are not allowed to specify custom subdomains. Please upgrade to Expose Pro.', 'custom_subdomain_unauthorized' => 'You are not allowed to specify custom subdomains. Please upgrade to Expose Pro.',
'no_free_tcp_port_available' => 'There are no free TCP ports available on this server. Please try again later.' 'no_free_tcp_port_available' => 'There are no free TCP ports available on this server. Please try again later.',
], ],
], ],
]; ];