| Total Complexity | 2 |
| Total Lines | 13 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | final class WebViewCollectorTest extends CollectorTestCase |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @param \Yiisoft\Yii\Debug\Collector\CollectorInterface|\Yiisoft\Yii\Debug\Collector\WebViewCollector $collector |
||
| 17 | */ |
||
| 18 | protected function collectTestData(CollectorInterface $collector): void |
||
| 19 | { |
||
| 20 | $collector->collect(new AfterRender(new WebView(__DIR__, $this->createMock(EventDispatcherInterface::class)), __FILE__, ['foo' => 'bar'], 'test content')); |
||
|
|
|||
| 21 | } |
||
| 22 | |||
| 23 | protected function getCollector(): CollectorInterface |
||
| 26 | } |
||
| 27 | } |
||
| 28 |