Skip to content

Commit

Permalink
doc-enの差分を反映(2) (#139)
Browse files Browse the repository at this point in the history
* Fix GH-3241 by adding the missing parameter to the arrow function declaration

php/doc-en@74976cd

* Remove very old (4.x) changelog information on a few functions

php/doc-en@dafb150
  • Loading branch information
zonuexe authored Oct 31, 2024
1 parent 5510f67 commit 7baee87
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 28 deletions.
4 changes: 2 additions & 2 deletions language/functions.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: f94d903985119d3ac00f4528551df947f57b667f Maintainer: takagi Status: ready -->
<!-- EN-Revision: 74976cdb263ef841c5fc2c3f91ca7e284adce552 Maintainer: takagi Status: ready -->
<!-- CREDITS: hirokawa,mumumu -->
<chapter xml:id="language.functions" xmlns="http://docbook.org/ns/docbook">
<title>関数</title>
Expand Down Expand Up @@ -1523,7 +1523,7 @@ var_export($fn(5)(10));
<?php
fn(array $x) => $x;
static fn(): int => $x;
static fn($x): int => $x;
fn($x = 42) => $x;
fn(&$x) => $x;
fn&($x) => $x;
Expand Down
27 changes: 1 addition & 26 deletions reference/fdf/functions/fdf-get-value.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: a56106f69198dfe88c6084593c78a71c26b24353 Maintainer: hirokawa Status: ready -->
<!-- EN-Revision: dafb1509d0b124bffe6ce275b5105b30b3fcec63 Maintainer: hirokawa Status: ready -->
<refentry xml:id="function.fdf-get-value" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
<refname>fdf_get_value</refname>
Expand Down Expand Up @@ -63,31 +63,6 @@
</para>
</refsect1>

<refsect1 role="changelog">
&reftitle.changelog;
<para>
<informaltable>
<tgroup cols="2">
<thead>
<row>
<entry>&Version;</entry>
<entry>&Description;</entry>
</row>
</thead>
<tbody>
<row>
<entry>4.3.0</entry>
<entry>
配列のサポート、およびオプションのパラメータ <parameter>which</parameter>
が追加されました。
</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</para>
</refsect1>

<refsect1 role="seealso">
&reftitle.seealso;
<para>
Expand Down

0 comments on commit 7baee87

Please sign in to comment.