diff --git a/src/Plugin/PhpUnit.php b/src/Plugin/PhpUnit.php index f7988b2e..d45b347d 100644 --- a/src/Plugin/PhpUnit.php +++ b/src/Plugin/PhpUnit.php @@ -42,10 +42,8 @@ class PhpUnit extends Plugin implements ZeroConfigPluginInterface */ protected $buildBranchLocation; - /** - * @var string[] Raw options from the config file - */ - protected $options = []; + /** @var PhpUnitOptions*/ + protected $options; /** * @return string @@ -83,7 +81,7 @@ class PhpUnit extends Plugin implements ZeroConfigPluginInterface /** * Check if the plugin can be executed without any configurations * - * @param $stage + * @param string $stage * @param Builder $builder * @param Build $build * @@ -140,9 +138,9 @@ class PhpUnit extends Plugin implements ZeroConfigPluginInterface /** * Run the tests defined in a PHPUnit config file or in a specific directory. * - * @param $directory - * @param $configFile - * @param string $logFormat + * @param string $directory + * @param string|null $configFile + * @param string $logFormat * * @return bool|mixed *