| Total Complexity | 2 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class Parameters |
||
| 8 | { |
||
| 9 | public const TRIGGER_EVENT_BUTTON_DOWN = 'buttonDown'; |
||
| 10 | public const TRIGGER_EVENT_BUTTON_UP = 'buttonUp'; |
||
| 11 | public const TRIGGER_EVENT_NONE = 'none'; |
||
| 12 | |||
| 13 | /** @param Animation[] $animations */ |
||
| 14 | 1 | public function __construct( |
|
| 19 | 1 | } |
|
| 20 | |||
| 21 | 1 | public static function create(array $animations, string $triggerEvent = self::TRIGGER_EVENT_NONE, int $triggerEventTimeMs = 0): self |
|
| 26 |