for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace OniBus\Handler\ClassMethod;
class ClassMethod
{
/**
* @var string
*/
private $message;
protected $class;
protected $method;
public function __construct(string $message, string $class, string $method)
$this->message = $message;
$this->class = $class;
$this->method = $method;
}
public function message(): string
return $this->message;
public function class(): string
return $this->class;
public function method(): string
return $this->method;