| 1 | <?php |
||
| 18 | class Atom extends Definition { |
||
| 19 | /** |
||
| 20 | * @var string |
||
| 21 | */ |
||
| 22 | protected $atom; |
||
| 23 | |||
| 24 | public function __construct($atom) { |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @return string |
||
| 32 | */ |
||
| 33 | public function __toString() { |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @param string |
||
| 39 | * @throws \InvalidArgumentException if string is not a valid atom. |
||
| 40 | * @return null |
||
| 41 | */ |
||
| 42 | protected function check($atom) { |
||
| 47 | } |
||
| 48 |