diff --git a/lib/Alchemy/Phrasea/Command/Developer/Utils/BowerDriver.php b/lib/Alchemy/Phrasea/Command/Developer/Utils/BowerDriver.php index 905e1ed68f..f196e12a56 100644 --- a/lib/Alchemy/Phrasea/Command/Developer/Utils/BowerDriver.php +++ b/lib/Alchemy/Phrasea/Command/Developer/Utils/BowerDriver.php @@ -18,6 +18,9 @@ use Psr\Log\LoggerInterface; class BowerDriver extends AbstractBinary { + /** + * {@inheritdoc} + */ public function getName() { return 'bower'; diff --git a/lib/Alchemy/Phrasea/Command/Developer/Utils/ComposerDriver.php b/lib/Alchemy/Phrasea/Command/Developer/Utils/ComposerDriver.php index a0f71c9d12..1d1b1db75f 100644 --- a/lib/Alchemy/Phrasea/Command/Developer/Utils/ComposerDriver.php +++ b/lib/Alchemy/Phrasea/Command/Developer/Utils/ComposerDriver.php @@ -18,11 +18,20 @@ use Psr\Log\LoggerInterface; class ComposerDriver extends AbstractBinary { + /** + * {@inheritdoc} + */ public function getName() { return 'composer'; } + /** + * @param array|ConfigurationInterface $conf + * @param LoggerInterface $logger + * + * @return ComposerDriver + */ public static function create($conf = array(), LoggerInterface $logger = null) { if (!$conf instanceof ConfigurationInterface) { diff --git a/lib/Alchemy/Phrasea/Command/Developer/Utils/GruntDriver.php b/lib/Alchemy/Phrasea/Command/Developer/Utils/GruntDriver.php index 36c7c1179e..ce6837b955 100644 --- a/lib/Alchemy/Phrasea/Command/Developer/Utils/GruntDriver.php +++ b/lib/Alchemy/Phrasea/Command/Developer/Utils/GruntDriver.php @@ -18,6 +18,9 @@ use Psr\Log\LoggerInterface; class GruntDriver extends AbstractBinary { + /** + * {@inheritdoc} + */ public function getName() { return 'grunt'; @@ -27,7 +30,7 @@ class GruntDriver extends AbstractBinary * @param array|ConfigurationInterface $conf * @param LoggerInterface $logger * - * @return BowerDriver + * @return GruntDriver */ public static function create($conf = array(), LoggerInterface $logger = null) { diff --git a/lib/Alchemy/Phrasea/Command/Developer/Utils/UglifyJsDriver.php b/lib/Alchemy/Phrasea/Command/Developer/Utils/UglifyJsDriver.php index 04676406b3..e3b106d60d 100644 --- a/lib/Alchemy/Phrasea/Command/Developer/Utils/UglifyJsDriver.php +++ b/lib/Alchemy/Phrasea/Command/Developer/Utils/UglifyJsDriver.php @@ -18,11 +18,20 @@ use Psr\Log\LoggerInterface; class UglifyJsDriver extends AbstractBinary { + /** + * {@inheritdoc} + */ public function getName() { return 'uglifyjs'; } + /** + * @param array|ConfigurationInterface $conf + * @param LoggerInterface $logger + * + * @return UglifyJsDriver + */ public static function create($conf = array(), LoggerInterface $logger = null) { if (!$conf instanceof ConfigurationInterface) {