Skip to content
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

Change instances of oop5 to oop #6

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions entities/global.ent
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,7 @@
<!ENTITY email.sample '[email protected]'>

<!ENTITY link.superglobals '<link xmlns="http://docbook.org/ns/docbook" linkend="language.variables.predefined">superglobals</link>'>
<!ENTITY link.autoload '<link xmlns="http://docbook.org/ns/docbook" linkend="language.oop5.autoload">__autoload</link>'>
<!ENTITY link.autoload '<link xmlns="http://docbook.org/ns/docbook" linkend="language.oop.autoload">__autoload</link>'>

<!ENTITY link.pecl '<link xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="&url.pecl;">PECL</link>'>

Expand Down Expand Up @@ -686,7 +686,7 @@
<!ENTITY foreach '<link xmlns="http://docbook.org/ns/docbook" linkend="control-structures.foreach"><literal>foreach</literal></link>'>
<!ENTITY global '<link xmlns="http://docbook.org/ns/docbook" linkend="language.variables.scope.global"><literal>global</literal></link>'>
<!ENTITY instanceof '<link xmlns="http://docbook.org/ns/docbook" linkend="language.operators.type"><literal>instanceof</literal></link>'>
<!ENTITY new '<link xmlns="http://docbook.org/ns/docbook" linkend="language.oop5.basic.new"><literal>new</literal></link>'>
<!ENTITY new '<link xmlns="http://docbook.org/ns/docbook" linkend="language.oop.basic.new"><literal>new</literal></link>'>
<!ENTITY yield '<link xmlns="http://docbook.org/ns/docbook" linkend="control-structures.yield"><literal>yield</literal></link>'>
<!ENTITY yield.from '<link xmlns="http://docbook.org/ns/docbook" linkend="control-structures.yield.from"><literal>yield from</literal></link>'>

Expand Down
2 changes: 1 addition & 1 deletion manual.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
&language.operators;
&language.control-structures;
&language.functions;
&language.oop5;
&language.oop;
&language.namespaces;
&language.errors;
&language.exceptions;
Expand Down
8 changes: 4 additions & 4 deletions scripts/check-examples.php
Original file line number Diff line number Diff line change
Expand Up @@ -198,9 +198,9 @@ function is_known_failure($filename) {
'language/exceptions.xml',
'language/namespaces.xml',
'language/oop.xml',
'language/oop5/basic.xml',
'language/oop5/final.xml',
'language/oop5/reflection.xml',
'language/oop/basic.xml',
'language/oop/final.xml',
'language/oop/reflection.xml',
'language/references.xml',
'language/variables.xml',
'language/types/array.xml',
Expand All @@ -225,4 +225,4 @@ function usage() {
echo "Example: php {$_SERVER['argv'][0]} -p /cvs/phpdoc/en -t /tmp\n";
echo "Optional: -o to load files in EDITOR (" . $_SERVER['EDITOR'] . ") or -o /path/to/editor\n";
exit;
}
}