for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Saxulum\PhpDocGenerator;
/**
* @link http://www.phpdoc.org/docs/latest/references/phpdoc/tags/var.html
*/
class VarRow extends AbstractRow
{
* @param string $type
* @param string|null $elementName
* @param string|null $description
public function __construct($type, $elementName = null, $description = null)
$this->addPart($type);
$this->addPart($elementName, '$');
$this->addPart($description);
}
* @return string
public function getName()
return 'var';