1 | <?php namespace SchulzeFelix\Stat\Objects; |
||
5 | class StatSite extends DataTransferObject |
||
6 | { |
||
7 | protected $casts = [ |
||
8 | 'id' => 'integer', |
||
9 | 'project_id' => 'integer', |
||
10 | 'total_keywords' => 'integer', |
||
11 | 'drop_www_prefix' => 'boolean', |
||
12 | 'drop_directories' => 'boolean', |
||
13 | ]; |
||
14 | |||
15 | |||
16 | public function setDropWWWPrefixAttribute($value) |
||
20 | |||
21 | public function setDropDirectoriesAttribute($value) |
||
25 | |||
26 | } |