php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #35717 Description doesn't appear when type and method param is on the same line
Submitted: 2005-12-16 23:25 UTC Modified: 2007-08-24 13:59 UTC
From: jsgoupil@php.net Assigned:
Status: Wont fix Package: Livedocs problem
PHP Version: Irrelevant OS:
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: jsgoupil@php.net
New email:
PHP Version: OS:

 

 [2005-12-16 23:25 UTC] jsgoupil@php.net
Description:
------------
Something like :
  <methodsynopsis>
   <type>void</type>
   <methodname>SDO_Sequence::insert</methodname>
   <methodparam>
    <type>mixed</type>
    <parameter>value</parameter>
   </methodparam>
   <methodparam choice="opt">
    <type>int</type>
    <parameter>sequenceIndex</parameter>
   </methodparam>
   <methodparam choice="opt">
    <type>mixed</type>
    <parameter>propertyIdentifier</parameter>
   </methodparam>
  </methodsynopsis>

Will appear "void  ( mixed  [, int  [, mixed ]])"

We have to put the type and parameter on the same line to have a correct output.


So
  <methodsynopsis>
 <type>void</type><methodname>SDO_Sequence::insert</methodname>
   <methodparam>
    <type>mixed</type><parameter>value</parameter>
   </methodparam>
   <methodparam choice="opt">
    <type>int</type><parameter>sequenceIndex</parameter>
   </methodparam>
   <methodparam choice="opt">
    <type>mixed</type><parameter>propertyIdentifier</parameter>
   </methodparam>
  </methodsynopsis>

Displays : "void SDO_Sequence::insert(mixed $value [, int $sequenceIndex [, mixed $propertyIdentifier]])"


Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2007-08-24 13:59 UTC] philip@php.net
Livedocs is no longer in development, the current build system is
titled PhD.

Note: PhD works either way.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sat Oct 12 06:01:27 2024 UTC