芝麻web文件管理V1.00
编辑当前文件:/home/rejoandoctor/www/vendor/facade/flare-client-php/src/Solutions/ReportSolution.php
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, ]; } }