for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Yiisoft\Widget\Event;
class AfterRun
{
private $result;
public function __construct($result)
$this->result = $result;
}
public function getResult()
return $this->result;