diff options
author | Jon Pugh | 2017-11-17 18:20:38 (GMT) |
---|---|---|
committer | Jon Pugh | 2017-11-17 18:20:38 (GMT) |
commit | eaa000ec227caf1f7312f14648ddfc5c692de638 (patch) | |
tree | be4094f41504f45b663033a96e4f5825ed2dce85 | |
parent | c20b7a1ea174d66bb69a262adaf0da7945657ee7 (diff) |
Adding docblock for Class Provision.
-rw-r--r-- | src/Provision.php | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/Provision.php b/src/Provision.php index fc2e38d..2a825ec 100644 --- a/src/Provision.php +++ b/src/Provision.php @@ -25,6 +25,16 @@ use Robo\Runner as RoboRunner; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; +/** + * Class Provision + * + * Uses BuilderAwareTrait to allow access to Robo Tasks: + * + * $this->getBuilder()->taskExec('ls -la') + * ->run() + * + * @package Aegir\Provision + */ class Provision implements ConfigAwareInterface, ContainerAwareInterface, LoggerAwareInterface, IOAwareInterface, BuilderAwareInterface { const APPLICATION_NAME = 'Aegir Provision'; @@ -90,7 +100,7 @@ class Provision implements ConfigAwareInterface, ContainerAwareInterface, Logger } /** - * Register the necessary classes for BLT. + * Register the necessary classes for Provision. */ public function configureContainer(Container $container) { |