| Total Complexity | 4 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | class ComposerOperationAnalyser |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var \Vaimo\ComposerChangelogs\Analysers\PackageAnalyser |
||
| 14 | */ |
||
| 15 | private $packageAnalyser; |
||
| 16 | |||
| 17 | public function __construct() |
||
| 18 | { |
||
| 19 | $this->packageAnalyser = new \Vaimo\ComposerChangelogs\Analysers\PackageAnalyser(); |
||
| 20 | } |
||
| 21 | |||
| 22 | public function isPluginUninstallOperation(OperationInterface $operation) |
||
| 32 | } |
||
| 33 | } |
||
| 34 |