Added a diff command to compare 2 memory dumps by oliverde8 · Pull Request #56 · 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
36 changes: 36 additions & 0 deletions README.md
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 @@ -5,6 +5,7 @@
use BitOne\PhpMemInfo\Console\Command\QueryCommand;
use BitOne\PhpMemInfo\Console\Command\ReferencePathCommand;
use BitOne\PhpMemInfo\Console\Command\SummaryCommand;
use BitOne\PhpMemInfo\Console\Command\DiffCommand;
use Symfony\Component\Console\Application as BaseApplication;

/**
Expand All @@ -21,5 +22,6 @@ public function __construct()
$this->add(new QueryCommand());
$this->add(new ReferencePathCommand());
$this->add(new SummaryCommand());
$this->add(new DiffCommand());
}
}
172 changes: 172 additions & 0 deletions analyzer/src/BitOne/PhpMemInfo/Console/Command/DiffCommand.php