Skip to content

Commit 9169d2f

Browse files
authored
[PHP 8.4] fix php/doc-en#3936 ([PHP 8.4] Add new constants and tokens from the tokenizer) (#194)
* [WIP] Work on php/doc-en#3936 * #194 Insert original content php/doc-en@8838f72 and parents * #194 Translate
1 parent ae0aed1 commit 9169d2f

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed

appendices/tokens.xml

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<!-- $Revision$ -->
3-
<!-- EN-Revision: 270a871223343be9280a3e8a133a5467a3e82908 Maintainer: hirokawa Status: ready -->
3+
<!-- EN-Revision: 8a6397d39aefd23c61d64aa4e9af919772541e2a Maintainer: hirokawa Status: ready -->
44
<!-- CREDITS: takagi,mumumu -->
55

66
<appendix xml:id="tokens" xmlns="http://docbook.org/ns/docbook">
@@ -703,20 +703,41 @@ defined('T_FN') || define('T_FN', 10001);
703703
<link linkend="language.oop5">クラスとオブジェクト</link>
704704
</entry>
705705
</row>
706+
<row xml:id="constant.t-private-set">
707+
<entry><constant>T_PRIVATE_SET</constant></entry>
708+
<entry>private(set)</entry>
709+
<entry>
710+
プロパティフック (PHP 8.4.0 以降で利用可能)
711+
</entry>
712+
</row>
706713
<row xml:id="constant.t-protected">
707714
<entry><constant>T_PROTECTED</constant></entry>
708715
<entry>protected</entry>
709716
<entry>
710717
<link linkend="language.oop5">クラスとオブジェクト</link>
711718
</entry>
712719
</row>
720+
<row xml:id="constant.t-protected-set">
721+
<entry><constant>T_PROTECTED_SET</constant></entry>
722+
<entry>protected(set)</entry>
723+
<entry>
724+
プロパティフック (PHP 8.4.0 以降で利用可能)
725+
</entry>
726+
</row>
713727
<row xml:id="constant.t-public">
714728
<entry><constant>T_PUBLIC</constant></entry>
715729
<entry>public</entry>
716730
<entry>
717731
<link linkend="language.oop5">クラスとオブジェクト</link>
718732
</entry>
719733
</row>
734+
<row xml:id="constant.t-public-set">
735+
<entry><constant>T_PUBLIC_SET</constant></entry>
736+
<entry>public(set)</entry>
737+
<entry>
738+
プロパティフック (PHP 8.4.0 以降で利用可能)
739+
</entry>
740+
</row>
720741
<row xml:id="constant.t-readonly">
721742
<entry><constant>T_READONLY</constant></entry>
722743
<entry>readonly</entry>

0 commit comments

Comments
 (0)