1
0
mirror of synced 2024-12-14 15:16:04 +03:00
doctrine2/manual/docs/Coding standards - PHP File Formatting - General.php

5 lines
454 B
PHP
Raw Normal View History

2006-10-01 17:58:19 +04:00
For files that contain only PHP code, the closing tag ("?>") is never permitted. It is not required by PHP. Not including it prevents trailing whitespace from being accidentally injected into the output.
<br \><br \>
2006-10-01 18:01:46 +04:00
IMPORTANT: Inclusion of arbitrary binary data as permitted by __HALT_COMPILER() is prohibited from any Doctrine framework PHP file or files derived from them. Use of this feature is only permitted for special installation scripts.
2006-10-01 17:58:19 +04:00