testing php storm code cleanup and styling
This commit is contained in:
@@ -12,27 +12,13 @@ class PrivateKey extends BaseModel
|
||||
'is_git_related',
|
||||
'team_id',
|
||||
];
|
||||
|
||||
static public function ownedByCurrentTeam(array $select = ['*'])
|
||||
{
|
||||
$selectArray = collect($select)->concat(['id']);
|
||||
return PrivateKey::whereTeamId(session('currentTeam')->id)->select($selectArray->all());
|
||||
}
|
||||
public function applications()
|
||||
{
|
||||
return $this->hasMany(Application::class);
|
||||
}
|
||||
public function githubApps()
|
||||
{
|
||||
return $this->hasMany(GithubApp::class);
|
||||
}
|
||||
public function gitlabApps()
|
||||
{
|
||||
return $this->hasMany(GitlabApp::class);
|
||||
}
|
||||
public function servers()
|
||||
{
|
||||
return $this->hasMany(Server::class);
|
||||
}
|
||||
|
||||
public function isEmpty()
|
||||
{
|
||||
if ($this->servers()->count() === 0 && $this->applications()->count() === 0 && $this->githubApps()->count() === 0 && $this->gitlabApps()->count() === 0) {
|
||||
@@ -40,4 +26,24 @@ class PrivateKey extends BaseModel
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
public function servers()
|
||||
{
|
||||
return $this->hasMany(Server::class);
|
||||
}
|
||||
|
||||
public function applications()
|
||||
{
|
||||
return $this->hasMany(Application::class);
|
||||
}
|
||||
|
||||
public function githubApps()
|
||||
{
|
||||
return $this->hasMany(GithubApp::class);
|
||||
}
|
||||
|
||||
public function gitlabApps()
|
||||
{
|
||||
return $this->hasMany(GitlabApp::class);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user