Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
27 | public function toArray($request) |
||
28 | { |
||
29 | $array = parent::toArray($request); |
||
30 | $array['url'] = config('app.apply_url').'/'.static::$tenantManager->getTenant()->subdomain.'/'.$array['key'] |
||
31 | .'-'.preg_replace("/[^A-Za-z0-9\-]/", '', str_replace(' ', '-', $this->recruitment->job_title)); |
||
|
|||
32 | |||
33 | return $array; |
||
34 | } |
||
36 |