Total Complexity | 1 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | class Settings extends Model |
||
19 | { |
||
20 | /** |
||
21 | * @var string Lever API key |
||
22 | */ |
||
23 | public $apiKey = ''; |
||
24 | |||
25 | /** |
||
26 | * @var string Lever site slug |
||
27 | */ |
||
28 | public $site = ''; |
||
29 | |||
30 | /** |
||
31 | * @var string Source value to be sent with every application from this site |
||
32 | */ |
||
33 | public $applicationSource = 'Craft CMS'; |
||
34 | |||
35 | /** |
||
36 | * @var bool Whether or not candidate should receive an email upon application |
||
37 | */ |
||
38 | public $applySilently = true; |
||
39 | |||
40 | /** |
||
41 | * @inheritdoc |
||
42 | */ |
||
43 | public function rules() |
||
53 |