for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PhpWinTools\WmiScripting\Support\Events;
class Event
{
protected $context;
public function __construct(Context $context)
$this->context = $context;
}
public static function new(Context $context)
return new static($context);
public function context(): Context
return $this->context;