for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Yiisoft\View;
final class ViewContext implements ViewContextInterface
{
public function __construct(
private string $viewPath
) {
}
public function getViewPath(): string
return $this->viewPath;