Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
17 | public static function create(array $config = [], bool $setAsDefaultConversionType = true): EmojiConverterInterface |
||
18 | { |
||
19 | $environment = Environment::create($config); |
||
20 | $environment->addExtension(new TwemojiExtension($setAsDefaultConversionType)); |
||
21 | |||
22 | return new self($environment); |
||
23 | } |
||
25 |