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 ServicesPanel implements PanelInterface
{
public function getName(): string
return 'Services';
}
public function renderSummary(): string
return file_get_contents(dirname(__DIR__, 2) . '/resources/views/services/summary.html');
public function renderDetail(): string
return file_get_contents(dirname(__DIR__, 2) . '/resources/views/services/view.html');