You are here

public function PeclExtension::getInstallCommand in Markdown 8.2

Retrieves the CLI command used to install the library, if any.

Return value

string|void A install command to be used to install the library, if any.

Overrides InstallableLibrary::getInstallCommand

File

src/Annotation/PeclExtension.php, line 81

Class

PeclExtension
PeclExtension Annotation.

Namespace

Drupal\markdown\Annotation

Code

public function getInstallCommand() {
  return 'pecl install ' . $this
    ->getName();
}