com doc/fr: Apply commit 0081d5b1c1445fcab74716693501aba37fbfa3bd: reference/spl/splqueue/construct.xml reference/spl/splqueue/dequeue.xml reference/spl/splqueue/enqueue.xml reference/spl/splqueue/setiteratormode.xml reference/spl/splstack/construct.xml reference/spl/splstack/setiteratormode.xml

[email protected] (George Peter Banyard) Tue, 02 Feb 2021 01:42:15 +0000
Newsgroups php.doc.fr
Message-ID <[email protected]>
Commit:    bc20feba4081e5e6555101247af5c0404950eaa4
Author:    George Peter Banyard <[email protected]>         Tue, 2 Feb 2021 01:42:15 +0000
Parents:   a324fed9987f784150e9ef435db0f8e03ad42e01
Branches:  master

Link:       http://git.php.net/?p=doc/fr.git;a=commitdiff;h=bc20feba4081e5e6555101247af5c0404950eaa4

Log:
Apply commit 0081d5b1c1445fcab74716693501aba37fbfa3bd

 Add missing visibility modifiers for SPL

Changed paths:
  M  reference/spl/splqueue/construct.xml
  M  reference/spl/splqueue/dequeue.xml
  M  reference/spl/splqueue/enqueue.xml
  M  reference/spl/splqueue/setiteratormode.xml
  M  reference/spl/splstack/construct.xml
  M  reference/spl/splstack/setiteratormode.xml


Diff:
diff --git a/reference/spl/splqueue/construct.xml b/reference/spl/splqueue/construct.xml
index f83f9db94e..41191b3137 100644
--- a/reference/spl/splqueue/construct.xml
+++ b/reference/spl/splqueue/construct.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 14af302c9c0e561fa6f9cdd956268758ba9a89c5 Maintainer: yannick Status: ready -->
+<!-- EN-Revision: 0081d5b1c1445fcab74716693501aba37fbfa3bd Maintainer: yannick Status: ready -->
 <!-- Reviewed: no -->
 
 <refentry xml:id="splqueue.construct" xmlns="http://docbook.org/ns/docbook">
@@ -12,7 +12,7 @@
  <refsect1 role="description">
   &reftitle.description;
   <constructorsynopsis>
-   <methodname>SplQueue::__construct</methodname>
+   <modifier>public</modifier> <methodname>SplQueue::__construct</methodname>
    <void/>
   </constructorsynopsis>
   <para>
diff --git a/reference/spl/splqueue/dequeue.xml b/reference/spl/splqueue/dequeue.xml
index bd7ba706e4..b9c24a42fb 100644
--- a/reference/spl/splqueue/dequeue.xml
+++ b/reference/spl/splqueue/dequeue.xml
@@ -1,17 +1,17 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 14af302c9c0e561fa6f9cdd956268758ba9a89c5 Maintainer: jpauli Status: ready -->
+<!-- EN-Revision: 0081d5b1c1445fcab74716693501aba37fbfa3bd Maintainer: jpauli Status: ready -->
 <!-- Reviewed: no -->
 
 <refentry xml:id="splqueue.dequeue" xmlns="http://docbook.org/ns/docbook">
  <refnamediv>
   <refname>SplQueue::dequeue</refname>
-  <refpurpose>Supprime un noeud de la file d'attente</refpurpose>
+  <refpurpose>Supprime un nœud de la file d'attente</refpurpose>
  </refnamediv>
  <refsect1 role="description">
   &reftitle.description;
   <methodsynopsis>
-   <type>mixed</type><methodname>SplQueue::dequeue</methodname>
+   <modifier>public</modifier> <type>mixed</type><methodname>SplQueue::dequeue</methodname>
    <void />
   </methodsynopsis>
   <para>
diff --git a/reference/spl/splqueue/enqueue.xml b/reference/spl/splqueue/enqueue.xml
index 11adcc88bc..b9754252fc 100644
--- a/reference/spl/splqueue/enqueue.xml
+++ b/reference/spl/splqueue/enqueue.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: dd07341fae2c414adc1f700be0890ff32e8daab4 Maintainer: yannick Status: ready -->
+<!-- EN-Revision: 0081d5b1c1445fcab74716693501aba37fbfa3bd Maintainer: yannick Status: ready -->
 <!-- Reviewed: no -->
 
 <refentry xml:id="splqueue.enqueue" xmlns="http://docbook.org/ns/docbook">
@@ -11,7 +11,7 @@
  <refsect1 role="description">
   &reftitle.description;
   <methodsynopsis>
-   <type>void</type><methodname>SplQueue::enqueue</methodname>
+   <modifier>public</modifier> <type>void</type><methodname>SplQueue::enqueue</methodname>
    <methodparam><type>mixed</type><parameter>value</parameter></methodparam>
   </methodsynopsis>
 
diff --git a/reference/spl/splqueue/setiteratormode.xml b/reference/spl/splqueue/setiteratormode.xml
index 29effc1465..0657a5c631 100644
--- a/reference/spl/splqueue/setiteratormode.xml
+++ b/reference/spl/splqueue/setiteratormode.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 14af302c9c0e561fa6f9cdd956268758ba9a89c5 Maintainer: yannick Status: ready -->
+<!-- EN-Revision: 0081d5b1c1445fcab74716693501aba37fbfa3bd Maintainer: yannick Status: ready -->
 <!-- Reviewed: yes -->
 
 <refentry xml:id="splqueue.setiteratormode" xmlns="http://docbook.org/ns/docbook">
@@ -12,7 +12,7 @@
  <refsect1 role="description">
   &reftitle.description;
   <methodsynopsis>
-   <type>void</type><methodname>SplQueue::setIteratorMode</methodname>
+   <modifier>public</modifier> <type>void</type><methodname>SplQueue::setIteratorMode</methodname>
    <methodparam><type>int</type><parameter>mode</parameter></methodparam>
   </methodsynopsis>
  </refsect1>
diff --git a/reference/spl/splstack/construct.xml b/reference/spl/splstack/construct.xml
index b83ad13d91..98fecd4516 100644
--- a/reference/spl/splstack/construct.xml
+++ b/reference/spl/splstack/construct.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 14af302c9c0e561fa6f9cdd956268758ba9a89c5 Maintainer: yannick Status: ready -->
+<!-- EN-Revision: 0081d5b1c1445fcab74716693501aba37fbfa3bd Maintainer: yannick Status: ready -->
 <!-- Reviewed: no -->
 
 <refentry xml:id="splstack.construct" xmlns="http://docbook.org/ns/docbook">
@@ -12,7 +12,7 @@
  <refsect1 role="description">
   &reftitle.description;
   <constructorsynopsis>
-   <methodname>SplStack::__construct</methodname>
+   <modifier>public</modifier> <methodname>SplStack::__construct</methodname>
    <void/>
   </constructorsynopsis>
   <para>
diff --git a/reference/spl/splstack/setiteratormode.xml b/reference/spl/splstack/setiteratormode.xml
index 8b3b87e665..0a977e08f1 100644
--- a/reference/spl/splstack/setiteratormode.xml
+++ b/reference/spl/splstack/setiteratormode.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <!-- $Revision$ -->
-<!-- EN-Revision: 14af302c9c0e561fa6f9cdd956268758ba9a89c5 Maintainer: jpauli Status: ready -->
+<!-- EN-Revision: 0081d5b1c1445fcab74716693501aba37fbfa3bd Maintainer: jpauli Status: ready -->
 <!-- Reviewed: yes -->
 
 <refentry xml:id="splstack.setiteratormode" xmlns="http://docbook.org/ns/docbook">
@@ -12,7 +12,7 @@
  <refsect1 role="description">
   &reftitle.description;
   <methodsynopsis>
-   <type>void</type><methodname>SplStack::setIteratorMode</methodname>
+   <modifier>public</modifier> <type>void</type><methodname>SplStack::setIteratorMode</methodname>
    <methodparam><type>int</type><parameter>mode</parameter></methodparam>
   </methodsynopsis>
  </refsect1>