X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Fbehat%2Fbehat%2Fsrc%2FBehat%2FBehat%2FOutput%2FStatistics%2FHookStat.php;fp=vendor%2Fbehat%2Fbehat%2Fsrc%2FBehat%2FBehat%2FOutput%2FStatistics%2FHookStat.php;h=e8afc312a6421d434d9fc63e5ec053037a9c3e36;hp=0000000000000000000000000000000000000000;hb=1270d9129ce8f27c9b28b10518e32132c58e0aca;hpb=c27c0f0cdaa3f354b1fe54a56ae7e854be6e3f68 diff --git a/vendor/behat/behat/src/Behat/Behat/Output/Statistics/HookStat.php b/vendor/behat/behat/src/Behat/Behat/Output/Statistics/HookStat.php new file mode 100644 index 000000000..e8afc312a --- /dev/null +++ b/vendor/behat/behat/src/Behat/Behat/Output/Statistics/HookStat.php @@ -0,0 +1,98 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Behat\Behat\Output\Statistics; + +/** + * Represents hook stat. + * + * @author Konstantin Kudryashov + */ +final class HookStat +{ + /** + * @var string + */ + private $name; + /** + * @var string + */ + private $path; + /** + * @var string|null + */ + private $error; + /** + * @var string|null + */ + private $stdOut; + + /** + * Initializes hook stat. + * + * @param string $name + * @param string $path + * @param null|string $error + * @param null|string $stdOut + */ + public function __construct($name, $path, $error = null, $stdOut = null) + { + $this->name = $name; + $this->path = $path; + $this->error = $error; + $this->stdOut = $stdOut; + } + + /** + * {@inheritdoc} + */ + public function getName() + { + return $this->name; + } + + /** + * {@inheritdoc} + */ + public function isSuccessful() + { + return null === $this->error; + } + + /** + * Returns hook standard output (if has some). + * + * @return null|string + */ + public function getStdOut() + { + return $this->stdOut; + } + + /** + * Returns hook exception. + * + * @return string + */ + public function getError() + { + return $this->error; + } + + /** + * Returns hook path. + * + * @return string + */ + public function getPath() + { + return $this->path; + } +}