1 | <?php |
||
7 | class StatSite extends DataTransferObject |
||
8 | { |
||
9 | protected $casts = [ |
||
10 | 'id' => 'integer', |
||
11 | 'project_id' => 'integer', |
||
12 | 'total_keywords' => 'integer', |
||
13 | 'drop_www_prefix' => 'boolean', |
||
14 | 'drop_directories' => 'boolean', |
||
15 | ]; |
||
16 | |||
17 | public function setDropWWWPrefixAttribute($value) |
||
21 | |||
22 | public function setDropDirectoriesAttribute($value) |
||
26 | } |
||
27 |