php-parser/test/code/prettyPrinter/stmt/properties.test

23 lines
343 B
Plaintext
Raw Normal View History

2019-01-05 12:06:18 +01:00
Class properties
-----
<?php
class A
{
public $a;
public string $b;
protected static ?float $c = 5.0;
private static ?self $d;
public readonly int|float $e;
2019-01-05 12:06:18 +01:00
}
-----
!!php7
class A
{
public $a;
public string $b;
protected static ?float $c = 5.0;
private static ?self $d;
public readonly int|float $e;
2019-01-05 12:06:18 +01:00
}