Skip to content

Namespaces: note that enums are affected #4739

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 22, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion language/namespaces.xml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@ echo constant($d); // see "Namespaces and dynamic language features" section
<?phpdoc print-version-for="namespaces"?>
<para>
Although any valid PHP code can be contained within a namespace, only the following
types of code are affected by namespaces: classes (including abstracts and traits), interfaces, functions and constants.
types of code are affected by namespaces: classes (including abstract classes, traits and enums), interfaces,
functions and constants.
</para>
<para>
Namespaces are declared using the <literal>namespace</literal>
Expand Down