Add stdclass-shapes command by tstarling · Pull Request #120 · BitOne/php-meminfo · GitHub
Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions analyzer/src/BitOne/PhpMemInfo/Console/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
use BitOne\PhpMemInfo\Console\Command\SummaryCommand;
use BitOne\PhpMemInfo\Console\Command\TopChildrenCommand;
use BitOne\PhpMemInfo\Console\Command\TopSizeCommand;
use BitOne\PhpMemInfo\Console\Command\StdClassShapesCommand;
use Symfony\Component\Console\Application as BaseApplication;

/**
Expand All @@ -24,5 +25,6 @@ public function __construct()
$this->add(new ReferencePathCommand());
$this->add(new SummaryCommand());
$this->add(new TopChildrenCommand());
$this->add(new StdClassShapesCommand());
}
}