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