for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Yiisoft\Widget\Tests\Stubs;
use Yiisoft\Widget\Widget;
class TestInjectionWidget extends Widget
{
private Injectable $injectable;
public function __construct(Injectable $injectable)
$this->injectable = $injectable;
}
public function getInjectable(): Injectable
return $this->injectable;
protected function run(): string
return 'test';