Completed
Pull Request — master (#150)
by
unknown
02:30
created

MockThrowableRenderer::render()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 1
dl 0
loc 3
rs 10
1
<?php
2
3
4
namespace Yiisoft\Yii\Web\Tests\Middleware\Mock;
5
6
7
use Yiisoft\Yii\Web\ErrorHandler\ThrowableRenderer;
8
9
class MockThrowableRenderer extends ThrowableRenderer
10
{
11
    /**
12
     * @var string
13
     */
14
    private $response;
15
16
    public function __construct(string $response)
17
    {
18
        $this->response = $response;
19
    }
20
21
    public function render(\Throwable $t): string
22
    {
23
        return $this->response;
24
    }
25
}
26