%PDF- %PDF-
Direktori : /var/www/html/rental/vendor/phpspec/phpspec/src/PhpSpec/Formatter/Presenter/ |
Current File : /var/www/html/rental/vendor/phpspec/phpspec/src/PhpSpec/Formatter/Presenter/SimplePresenter.php |
<?php /* * This file is part of PhpSpec, A php toolset to drive emergent * design by specification. * * (c) Marcello Duarte <marcello.duarte@gmail.com> * (c) Konstantin Kudryashov <ever.zet@gmail.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace PhpSpec\Formatter\Presenter; use PhpSpec\Formatter\Presenter\Exception\ExceptionPresenter; use PhpSpec\Formatter\Presenter\Value\ValuePresenter; final class SimplePresenter implements PresenterInterface { /** * @var ValuePresenter */ private $valuePresenter; /** * @var ExceptionPresenter */ private $exceptionPresenter; /** * @param ValuePresenter $valuePresenter * @param ExceptionPresenter $exceptionPresenter */ public function __construct(ValuePresenter $valuePresenter, ExceptionPresenter $exceptionPresenter) { $this->valuePresenter = $valuePresenter; $this->exceptionPresenter = $exceptionPresenter; } /** * @param mixed $value * * @return string */ public function presentValue($value) { return $this->valuePresenter->presentValue($value); } /** * @param \Exception $exception * @param bool $verbose * * @return string */ public function presentException(\Exception $exception, $verbose = false) { return $this->exceptionPresenter->presentException($exception, $verbose); } /** * @param string $string * * @return string */ public function presentString($string) { return $string; } }