phpdoc function comment

Solutions on MaxInterview for phpdoc function comment by the best coders in the world

showing results for - "phpdoc function comment"
Allison
22 Jun 2019
1<?php
2/**
3 * A summary informing the user what the associated element does.
4 *
5 * A *description*, that can span multiple lines, to go _in-depth_ into
6 * the details of this element and to provide some background information
7 * or textual references.
8 *
9 * @param string $myArgument With a *description* of this argument,
10 *                           these may also span multiple lines.
11 *
12 * @return void
13 */
14 function myFunction($myArgument)
15 {
16 }