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
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please — but make sure to vote on the bug!
Your email address:
MUST BE VALID
Solve the problem:
50 + 40 = ?
Subscribe to this entry?

 
 [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

Add a Patch

Pull Requests

Add a Pull Request

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: Thu Mar 28 11:01:27 2024 UTC