1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2025-01-20 20:57:48 +01:00

13 lines
311 B
Plaintext

Namespace types cannot be mixed
-----
<?php
namespace A;
namespace B {}
-----
Cannot mix bracketed namespace declarations with unbracketed namespace declarations on line 3
-----
<?php
namespace A {}
namespace B;
-----
Cannot mix bracketed namespace declarations with unbracketed namespace declarations on line 3