for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Maslosoft\Zamm\Widgets;
/**
* This will display HTML table containing documentation
* for classes top doc block in selected namespace.
*
* @author Piotr Maselkowski <pmaselkowski at gmail.com>
*/
class NamespaceDocs extends AbstractWidget
{
private $class = null;
public function __construct($class)
$this->class = $class;
}
public function __toString()
return $this->render('namespace-docs', ['class' => $this->class]);