Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
25 | public function baseModelAttributes() |
||
26 | { |
||
27 | return array_merge([ |
||
28 | 'rejection_id' => 1, |
||
29 | 'survey_id' => 1, |
||
30 | 'respondent_id' => 1, |
||
31 | 'email_address' => "[email protected]", |
||
32 | 'type' => Rejection::BOUNCE_TYPE_ANSWERED, |
||
33 | 'bounce' => null, |
||
34 | 'time_rejected' => "2010-10-01", |
||
35 | |||
36 | ], parent::baseModelAttributes()); |
||
37 | } |
||
49 | } |