| 1 | <?php |
||
| 11 | abstract class NamedSection extends AbstractSection |
||
| 12 | { |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @var string |
||
| 16 | */ |
||
| 17 | protected $sectionLine; |
||
| 18 | |||
| 19 | |||
| 20 | /** |
||
| 21 | * ListenSection constructor. |
||
| 22 | * |
||
| 23 | * @param string $sectionLine |
||
| 24 | */ |
||
| 25 | public function __construct($sectionLine) |
||
| 29 | |||
| 30 | |||
| 31 | /** |
||
| 32 | * @return string the name of the section |
||
| 33 | */ |
||
| 34 | public function getName() |
||
| 40 | |||
| 41 | } |
||
| 42 |