| 1 | <?php |
||
| 18 | class Installer extends LibraryInstaller |
||
| 19 | { |
||
| 20 | protected $vendorPath; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Get path to the installation package |
||
| 24 | * |
||
| 25 | * {@inheritDoc} |
||
| 26 | */ |
||
| 27 | public function getInstallPath(PackageInterface $package): string |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Check type of the plugin |
||
| 35 | * |
||
| 36 | * {@inheritDoc} |
||
| 37 | */ |
||
| 38 | public function supports($packageType) |
||
| 42 | |||
| 43 | /** |
||
| 44 | * Get inputOutput instance |
||
| 45 | */ |
||
| 46 | public function getIo(): IOInterface |
||
| 50 | |||
| 51 | /** |
||
| 52 | * Get path to current vendor |
||
| 53 | */ |
||
| 54 | public function getVendorPath() |
||
| 58 | } |
||
| 59 |