| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 56 | public function attributeHints() |
||
| 57 | { |
||
| 58 | $hints = [ |
||
| 59 | 'names' => 'Comma separated list.', |
||
| 60 | ]; |
||
| 61 | $trackerTypeHints = [ |
||
| 62 | TrackerType::ACCOUNT => [], |
||
| 63 | TrackerType::TAG => [], |
||
| 64 | ]; |
||
| 65 | |||
| 66 | return ArrayHelper::merge($hints, ArrayHelper::getValue($trackerTypeHints, $this->scenario, [])); |
||
| 67 | } |
||
| 68 | } |