Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | public function __construct($spamTimeout = 60, $icons = []) |
||
10 | { |
||
11 | parent::__construct($spamTimeout); |
||
12 | |||
13 | $behatchDir = __DIR__ . '/Resources'; |
||
14 | |||
15 | self::$icons = $icons + [ |
||
16 | 'sad' => "$behatchDir/images/gnome-sad.png", |
||
17 | 'smile' => "$behatchDir/images/gnome-smile.png", |
||
18 | 'error' => "$behatchDir/images/gnome-error.png", |
||
19 | ]; |
||
20 | } |
||
21 | |||
32 |