Add missing doc blocks

This commit is contained in:
Nicolas Le Goff
2013-08-20 15:10:56 +02:00
parent 898a48f68f
commit 4b02c44e80
4 changed files with 25 additions and 1 deletions

View File

@@ -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) {