mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-12-14 10:08:36 +01:00
81e53ce0ff
This changset also adds unit tests for Comments and adds a way to test the pretty printer.
29 lines
748 B
Plaintext
29 lines
748 B
Plaintext
Invalid modifier combination
|
|
-----
|
|
<?php class A { public public $a; }
|
|
-----
|
|
Multiple access type modifiers are not allowed on line 1
|
|
-----
|
|
<?php class A { public protected $a; }
|
|
-----
|
|
Multiple access type modifiers are not allowed on line 1
|
|
-----
|
|
<?php class A { abstract abstract a(); }
|
|
-----
|
|
Multiple abstract modifiers are not allowed on line 1
|
|
-----
|
|
<?php class A { static static $a; }
|
|
-----
|
|
Multiple static modifiers are not allowed on line 1
|
|
-----
|
|
<?php class A { final final a() {} }
|
|
-----
|
|
Multiple final modifiers are not allowed on line 1
|
|
-----
|
|
<?php class A { abstract final a(); }
|
|
-----
|
|
Cannot use the final and abstract modifier at the same time on line 1
|
|
-----
|
|
<?php abstract final class A { }
|
|
-----
|
|
Unexpected token T_FINAL on line 1 |