%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/TaggedPresenter.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; /** * @deprecated Use PhpSpec\Formatter\Presenter\TaggingPresenter instead */ class TaggedPresenter extends StringPresenter { public function presentString($string) { return '<value>'.parent::presentString($string).'</value>'; } protected function presentCodeLine($number, $line) { return sprintf('<lineno>%s</lineno> <code>%s</code>', $number, $line); } protected function presentHighlight($line) { return '<hl>'.$line.'</hl>'; } protected function presentExceptionTraceHeader($header) { return sprintf("<trace>%s</trace>\n", $header); } protected function presentExceptionTraceMethod($class, $type, $method, array $args) { $args = array_map(array($this, 'presentValue'), $args); return sprintf( " <trace><trace-class>%s</trace-class><trace-type>%s</trace-type>". "<trace-func>%s</trace-func>(<trace-args>%s</trace-args>)</trace>\n", $class, $type, $method, implode(', ', $args) ); } protected function presentExceptionTraceFunction($function, array $args) { $args = array_map(array($this, 'presentValue'), $args); return sprintf( " <trace><trace-func>%s</trace-func>(<trace-args>%s</trace-args>)</trace>\n", $function, implode(', ', $args) ); } }