php-parser/test/code/prettyPrinter/stmt/properties.test
2021-07-21 12:43:29 +02:00

23 lines
343 B
Plaintext

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;
}
-----
!!php7
class A
{
public $a;
public string $b;
protected static ?float $c = 5.0;
private static ?self $d;
public readonly int|float $e;
}