for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Yiisoft\Yii\Debug\Viewer\Panels;
final class InspectorPanel implements PanelInterface
{
public function getName(): string
return 'Inspector';
}
public function renderSummary(): string
return '';
public function renderDetail(): string
return file_get_contents(dirname(__DIR__, 2) . '/resources/views/inspector/view.html');