/home/techb158/dev.balacoffee.com/vendor/facade/flare-client-php/src/Solutions
Edit: /home/techb158/dev.balacoffee.com/vendor/facade/flare-client-php/src/Solutions/ReportSolution.php (1011B)
solution = $solution;
}
public static function fromSolution(SolutionContract $solution)
{
return new static($solution);
}
public function toArray(): array
{
$isRunnable = ($this->solution instanceof RunnableSolution);
return [
'class' => get_class($this->solution),
'title' => $this->solution->getSolutionTitle(),
'description' => $this->solution->getSolutionDescription(),
'links' => $this->solution->getDocumentationLinks(),
'action_description' => $isRunnable ? $this->solution->getSolutionActionDescription() : null,
'is_runnable' => $isRunnable,
];
}
}