Browse Source

Added array initialization

tags/2.0.0-beta
Alexander Makarov 11 years ago
parent
commit
09f64d9032
  1. 1
      extensions/apidoc/templates/html/Renderer.php

1
extensions/apidoc/templates/html/Renderer.php vendored

@ -232,6 +232,7 @@ abstract class Renderer extends BaseRenderer implements ViewContextInterface
*/
public function renderInheritance($class)
{
$parents = [];
$parents[] = $this->typeLink($class);
while ($class->parentClass !== null) {
if(isset($this->context->classes[$class->parentClass])) {

Loading…
Cancel
Save