| Total Complexity | 1 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | trait TransformerInitTrait |
||
| 21 | { |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Runtime storage for the formatted text string. |
||
| 25 | * @var string |
||
| 26 | */ |
||
| 27 | protected $formatted = ''; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * The tag configuration. |
||
| 31 | * @var array |
||
| 32 | */ |
||
| 33 | protected $tags; |
||
| 34 | |||
| 35 | /** |
||
| 36 | * Class constructor |
||
| 37 | * @param string $string The string of which to be converted/transformed. |
||
| 38 | * @param Configuration $configuration The tag configuration. |
||
| 39 | */ |
||
| 40 | 18 | public function __construct($string, Configuration $configuration) |
|
| 46 |