for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Freshcells\StateInspector\Issue;
class Issue implements IssueInterface
{
private $subject;
private $description;
private $solution;
/**
* Issue constructor.
* @param string $subject
* @param string $description
* @param string $solution
*/
public function __construct(string $subject, string $description = '', string $solution = '')
$this->subject = $subject;
$this->description = $description;
$this->solution = $solution;
}
* @return string
public function getSubject(): string
return $this->subject;
public function getDescription(): string
return $this->description;
public function getSolution(): string
return $this->solution;