| Current Path : /var/www/html/edd.sumar.com.py/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/ |
| Current File : /var/www/html/edd.sumar.com.py/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/properties.test |
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;
}
-----
class A
{
public $a;
public string $b;
protected static ?float $c = 5.0;
private static ?self $d;
public readonly int|float $e;
}