| Total Complexity | 2 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 5 | class AcmeParser |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * @var string |
||
| 9 | */ |
||
| 10 | private $string; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * AcmeParser constructor. |
||
| 14 | * |
||
| 15 | * @param string $string |
||
| 16 | */ |
||
| 17 | public function __construct($string) |
||
| 18 | { |
||
| 19 | $this->string = $string; |
||
| 20 | } |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @return string |
||
| 24 | */ |
||
| 25 | public function parse() |
||
| 29 | } |
||
| 30 | } |
||
| 31 |