1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2025-01-06 04:58:28 +01:00
PHP-Parser/test/code/prettyPrinter/stmt/properties.test

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