| 1 | <?php |
||
| 17 | class Newline extends AbstractInline |
||
| 18 | { |
||
| 19 | // Any changes to these constants should be reflected in .phpstorm.meta.php |
||
| 20 | const HARDBREAK = 0; |
||
| 21 | const SOFTBREAK = 1; |
||
| 22 | |||
| 23 | /** @var int */ |
||
| 24 | protected $type; |
||
| 25 | |||
| 26 | 465 | public function __construct(int $breakType = self::HARDBREAK) |
|
| 30 | |||
| 31 | 273 | public function getType(): int |
|
| 35 | } |
||
| 36 |