Skip to content

Commit

Permalink
[PHP 8.4] fix php/doc-en#3936 ([PHP 8.4] Add new constants and tokens…
Browse files Browse the repository at this point in the history
… from the tokenizer) (#194)

* [WIP] Work on php/doc-en#3936

* #194 Insert original content

php/doc-en@8838f72 and parents

* #194 Translate
  • Loading branch information
o0h authored Nov 25, 2024
1 parent ae0aed1 commit 9169d2f
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion appendices/tokens.xml
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">
Expand Down Expand Up @@ -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 以降で利用可能)
</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>
Expand Down

0 comments on commit 9169d2f

Please sign in to comment.