1 | <?php |
||
5 | class Smiley extends AbstractMode |
||
6 | { |
||
7 | protected $smileys = array(); |
||
8 | protected $pattern = ''; |
||
9 | |||
10 | /** |
||
11 | * Smiley constructor. |
||
12 | * @param string[] $smileys |
||
13 | */ |
||
14 | public function __construct($smileys) |
||
18 | |||
19 | /** @inheritdoc */ |
||
20 | public function preConnect() |
||
30 | |||
31 | /** @inheritdoc */ |
||
32 | public function connectTo($mode) |
||
40 | |||
41 | /** @inheritdoc */ |
||
42 | public function getSort() |
||
46 | } |
||
47 |