| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | public static function fromString($string, Translations $translations, array $options = []) |
||
| 24 | { |
||
| 25 | $options += static::$options; |
||
| 26 | |||
| 27 | $twig = $options['twig'] ?: self::createTwig(); |
||
| 28 | |||
| 29 | PhpCode::fromString($twig->compileSource(new Twig_Source($string, '')), $translations, $options); |
||
| 30 | } |
||
| 31 | |||
| 45 |