Skip to content

Commit 37a5e29

Browse files
authored
Merge branch 'develop' into feature/exception-tests
2 parents a17570c + 00df0b6 commit 37a5e29

File tree

135 files changed

+241
-209
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

135 files changed

+241
-209
lines changed

CHANGELOG.md

Lines changed: 29 additions & 29 deletions
Large diffs are not rendered by default.

app/Console/Commands/Environment/AppSettingsCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ class AppSettingsCommand extends Command
5858
* @var string
5959
*/
6060
protected $signature = 'p:environment:setup
61-
{--new-salt : Wether or not to generate a new salt for Hashids.}
61+
{--new-salt : Whether or not to generate a new salt for Hashids.}
6262
{--author= : The email that services created on this instance should be linked to.}
6363
{--url= : The URL that this Panel is running on.}
6464
{--timezone= : The timezone to use for Panel times.}

app/Console/Commands/Environment/EmailSettingsCommand.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ public function __construct(ConfigRepository $config)
5959

6060
/**
6161
* Handle command execution.
62+
* @throws \Pterodactyl\Exceptions\PterodactylException
6263
*/
6364
public function handle()
6465
{

app/Console/Commands/InfoCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public function handle()
8484
['Host', $this->config->get("database.connections.{$driver}.host")],
8585
['Port', $this->config->get("database.connections.{$driver}.port")],
8686
['Database', $this->config->get("database.connections.{$driver}.database")],
87-
['Usernamne', $this->config->get("database.connections.{$driver}.username")],
87+
['Username', $this->config->get("database.connections.{$driver}.username")],
8888
], 'compact');
8989

9090
$this->output->title('Email Configuration');

app/Console/Commands/Server/BulkPowerActionCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ class BulkPowerActionCommand extends Command
3131
*/
3232
protected $signature = 'p:server:bulk-power
3333
{action : The action to perform (start, stop, restart, kill)}
34-
{--servers= : A comma seperated list of servers.}
35-
{--nodes= : A comma seperated list of nodes.}';
34+
{--servers= : A comma separated list of servers.}
35+
{--nodes= : A comma separated list of nodes.}';
3636

3737
/**
3838
* @var string

app/Contracts/Repository/AllocationRepositoryInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public function getUnassignedAllocationIds(int $node): array;
5959
public function getAssignedAllocationIds(int $server): array;
6060

6161
/**
62-
* Return a concated result set of node ips that already have at least one
62+
* Return a concatenated result set of node ips that already have at least one
6363
* server assigned to that IP. This allows for filtering out sets for
6464
* dedicated allocation IPs.
6565
*

app/Contracts/Repository/Daemon/ServerRepositoryInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public function unsuspend(): ResponseInterface;
6262
public function delete(): ResponseInterface;
6363

6464
/**
65-
* Return detials on a specific server.
65+
* Return details on a specific server.
6666
*
6767
* @return \Psr\Http\Message\ResponseInterface
6868
*/

app/Contracts/Repository/DatabaseRepositoryInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ interface DatabaseRepositoryInterface extends RepositoryInterface
1919
public function setConnection(string $connection);
2020

2121
/**
22-
* Return the connection to execute statements aganist.
22+
* Return the connection to execute statements against.
2323
*
2424
* @return string
2525
*/

app/Contracts/Repository/EggRepositoryInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,5 @@ public function getWithExportAttributes(int $id): Egg;
5757
* @param int $service
5858
* @return bool
5959
*/
60-
public function isCopiableScript(int $copyFromId, int $service): bool;
60+
public function isCopyableScript(int $copyFromId, int $service): bool;
6161
}

app/Contracts/Repository/RepositoryInterface.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public function getModel();
2929
public function getBuilder();
3030

3131
/**
32-
* Returns the colummns to be selected or returned by the query.
32+
* Returns the columns to be selected or returned by the query.
3333
*
3434
* @return mixed
3535
*/
@@ -59,7 +59,7 @@ public function withoutFreshModel();
5959
public function withFreshModel();
6060

6161
/**
62-
* Set wether or not the repository should return a fresh model
62+
* Set whether or not the repository should return a fresh model
6363
* when changes are committed.
6464
*
6565
* @param bool $fresh

0 commit comments

Comments
 (0)