Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I checked it and I think you can use javascriptMVC documentation tool. I thik <a href="http://www.javascriptmvc.com/docs.html#!DocumentJS" rel="nofollow noreferrer">Documentation Tool</a>.<br /> and a demo of it <a href="http://www.javascriptmvc.com/docs.html#!jQuery.Controller" rel="nofollow noreferrer">is here</a>. and I suggest you to try this.(-:</p> <p>here is an output of documentJs of javascriptMVC which is /i think the thing you want. or at least I hope.(-: <img src="https://i.stack.imgur.com/bC9xP.jpg" alt="enter image description here"></p> <hr> <hr> <p>and about phpDocumentor As I said I need some explains to get what you mean but for now please check these. <a href="http://www.phpdoc.org/docs/latest/for-users/phpdoc/tags/source.html" rel="nofollow noreferrer">link1</a>. <a href="http://www.phpdoc.org/docs/latest/for-users/introduction/definitions.html#term-doccomment" rel="nofollow noreferrer">link2</a> . (if the following is the thing you want).</p> <pre><code> /** @type int This is a counter. */ $int = 0; // there should be no docblock here $int++; </code></pre> <p>Or:</p> <pre><code> /** * This class acts as an example on where to position a DocBlock. */ class Foo { /** @type string|null Should contain a description if available */ protected $description = null; /** * This method sets a description. * * @param string $description A text with a maximum of 80 characters. * * @return void */ public function setDescription($description) { // there should be no docblock here $this-&gt;description = $description; } } </code></pre> <p>Another example is to document the variable in a foreach explicitly; many IDEs use this information to help you with auto-completion:</p> <pre><code> /** @type \Sqlite3 $sqlite */ foreach($connections as $sqlite) { // there should be no docblock here $sqlite-&gt;open('/my/database/path'); &lt;...&gt; } </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload