Skip to content

Commit

Permalink
Add pretty printer test
Browse files Browse the repository at this point in the history
  • Loading branch information
nikic committed Jul 21, 2021
1 parent 028d8b8 commit a242b3e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/code/prettyPrinter/stmt/properties.test
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ class A
public string $b;
protected static ?float $c = 5.0;
private static ?self $d;
public readonly int|float $e;
}
-----
!!php7
Expand All @@ -17,4 +18,5 @@ class A
public string $b;
protected static ?float $c = 5.0;
private static ?self $d;
public readonly int|float $e;
}

0 comments on commit a242b3e

Please sign in to comment.