forked from REBELinBLUE/deployer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRef.php
44 lines (38 loc) · 814 Bytes
/
Ref.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php
namespace REBELinBLUE\Deployer;
use Illuminate\Database\Eloquent\Model;
/**
* Git Ref model.
*/
class Ref extends Model
{
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = ['name', 'project_id', 'is_tag'];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
protected $visible = ['id', 'name', 'is_tag'];
/**
* The attributes that should be casted to native types.
*
* @var array
*/
protected $casts = [
'is_tag' => 'boolean',
];
/**
* Belongs to relationship.
*
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
*/
public function project()
{
return $this->belongsTo(Project::class);
}
}