Merge branch 'develop' into dane/restore-backups

This commit is contained in:
Dane Everitt
2021-01-25 19:16:40 -08:00
575 changed files with 6080 additions and 6864 deletions

View File

@@ -61,7 +61,7 @@ class Server extends Model
* The resource name for this model when it is transformed into an
* API representation using fractal.
*/
const RESOURCE_NAME = 'server';
public const RESOURCE_NAME = 'server';
const STATUS_INSTALLING = 'installing';
const STATUS_INSTALL_FAILED = 'install_failed';
@@ -160,8 +160,6 @@ class Server extends Model
/**
* Returns the format for server allocations when communicating with the Daemon.
*
* @return array
*/
public function getAllocationMappings(): array
{
@@ -170,9 +168,6 @@ class Server extends Model
})->toArray();
}
/**
* @return bool
*/
public function isInstalled(): bool
{
return $this->status !== self::STATUS_INSTALLING && $this->status !== self::STATUS_INSTALL_FAILED;