composer update
This commit is contained in:
parent
f6abc3dce2
commit
71dfaca858
1753 changed files with 45274 additions and 14619 deletions
|
@ -19,6 +19,9 @@ $a--;
|
|||
(float) $a;
|
||||
(double) $a;
|
||||
(real) $a;
|
||||
( float) $a;
|
||||
(double ) $a;
|
||||
( REAL ) $a;
|
||||
(string) $a;
|
||||
(binary) $a;
|
||||
(array) $a;
|
||||
|
@ -87,9 +90,12 @@ $a--;
|
|||
+$a;
|
||||
(int) $a;
|
||||
(int) $a;
|
||||
(float) $a;
|
||||
(double) $a;
|
||||
(real) $a;
|
||||
(float) $a;
|
||||
(double) $a;
|
||||
(double) $a;
|
||||
(real) $a;
|
||||
(string) $a;
|
||||
(string) $a;
|
||||
(array) $a;
|
||||
|
|
20
vendor/nikic/php-parser/test/code/prettyPrinter/stmt/properties.test
vendored
Normal file
20
vendor/nikic/php-parser/test/code/prettyPrinter/stmt/properties.test
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
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;
|
||||
}
|
Reference in a new issue