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

MockThrowableRenderer   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 4
c 1
b 0
f 0
dl 0
loc 15
rs 10
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
A render() 0 3 1
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