Merge pull request #30 from meadsteve/phpunit-comment-tweak

Phpunit comment tweak
This commit is contained in:
Dan Cryer 2013-05-16 01:56:26 -07:00
commit 68c6f14cec

View file

@ -4,9 +4,13 @@ namespace PHPCI\Plugin;
class PhpUnit implements \PHPCI\Plugin
{
protected $directory;
protected $args;
protected $phpci;
/**
* @var string|string[] $directory The directory (or array of dirs) to run PHPUnit on
*/
protected $directory;
/**
* @var string $runFrom When running PHPUnit with an XML config, the command is run from this directory
@ -14,7 +18,7 @@ class PhpUnit implements \PHPCI\Plugin
protected $runFrom;
/**
* @var string $xmlConfigFile The path of an xml config for PHPUnit
* @var string|string[] $xmlConfigFile The path (or array of paths) of an xml config for PHPUnit
*/
protected $xmlConfigFile;