-
Notifications
You must be signed in to change notification settings - Fork 74
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
[PHP 8.4] fix php/doc-en#3936 ([PHP 8.4] Add new constants and tokens from the tokenizer) #194
Merged
KentarouTakeda
merged 3 commits into
php:master
from
o0h:php84_add_new_constants_and_tokens
Nov 25, 2024
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- $Revision$ --> | ||
<!-- EN-Revision: 270a871223343be9280a3e8a133a5467a3e82908 Maintainer: hirokawa Status: ready --> | ||
<!-- EN-Revision: 8a6397d39aefd23c61d64aa4e9af919772541e2a Maintainer: hirokawa Status: ready --> | ||
<!-- CREDITS: takagi,mumumu --> | ||
|
||
<appendix xml:id="tokens" xmlns="http://docbook.org/ns/docbook"> | ||
|
@@ -703,20 +703,41 @@ defined('T_FN') || define('T_FN', 10001); | |
<link linkend="language.oop5">クラスとオブジェクト</link> | ||
</entry> | ||
</row> | ||
<row xml:id="constant.t-private-set"> | ||
<entry><constant>T_PRIVATE_SET</constant></entry> | ||
<entry>private(set)</entry> | ||
<entry> | ||
プロパティフック (PHP 8.4.0 以降で利用可能) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 機能のページへリンクがないのはenも同様 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. これ、作成時点でリンク先が用意されてなかった、が理由だと思うので、そのうち原文が更新される気がします😇 |
||
</entry> | ||
</row> | ||
<row xml:id="constant.t-protected"> | ||
<entry><constant>T_PROTECTED</constant></entry> | ||
<entry>protected</entry> | ||
<entry> | ||
<link linkend="language.oop5">クラスとオブジェクト</link> | ||
</entry> | ||
</row> | ||
<row xml:id="constant.t-protected-set"> | ||
<entry><constant>T_PROTECTED_SET</constant></entry> | ||
<entry>protected(set)</entry> | ||
<entry> | ||
プロパティフック (PHP 8.4.0 以降で利用可能) | ||
</entry> | ||
</row> | ||
<row xml:id="constant.t-public"> | ||
<entry><constant>T_PUBLIC</constant></entry> | ||
<entry>public</entry> | ||
<entry> | ||
<link linkend="language.oop5">クラスとオブジェクト</link> | ||
</entry> | ||
</row> | ||
<row xml:id="constant.t-public-set"> | ||
<entry><constant>T_PUBLIC_SET</constant></entry> | ||
<entry>public(set)</entry> | ||
<entry> | ||
プロパティフック (PHP 8.4.0 以降で利用可能) | ||
</entry> | ||
</row> | ||
<row xml:id="constant.t-readonly"> | ||
<entry><constant>T_READONLY</constant></entry> | ||
<entry>readonly</entry> | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
php/doc-en@8a6397d