Skip to content

Latest commit

 

History

History
38 lines (28 loc) · 370 Bytes

phpdoc.md

File metadata and controls

38 lines (28 loc) · 370 Bytes

PHPDoc

Return self

/**
 * @returns self
 */

Inheritence

/**
 * {@inheritDoc}
 */

Inline variable

/* @var $variableName \Class\Name */

Array of thangs


/* @var $someObjects SomeObject[] */
foreach ($someObjects as $someObject) {
    //($someObject instanceof SomeObject) === true
}

/**
 * @return int[]
 */