| Conditions | 2 |
| Paths | 2 |
| Total Lines | 7 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | public function isPatcherUninstallOperation(OperationInterface $operation) |
||
| 23 | { |
||
| 24 | if (!$operation instanceof \Composer\DependencyResolver\Operation\UninstallOperation) { |
||
| 25 | return false; |
||
| 26 | } |
||
| 27 | |||
| 28 | return $this->configAnalyser->ownsNamespace($operation->getPackage(), __NAMESPACE__); |
||
| 29 | } |
||
| 31 |