message = 'Tenant could not be identified ' . $how; return $this; } /** Set the solution title. */ protected function title(string $solutionTitle): static { $this->solutionTitle = $solutionTitle; return $this; } /** Set the solution description. */ protected function description(string $solutionDescription): static { $this->solutionDescription = $solutionDescription; return $this; } /** Get the Ignition description. */ public function getSolution(): BaseSolution { return BaseSolution::create($this->solutionTitle) ->setSolutionDescription($this->solutionDescription) ->setDocumentationLinks([ 'Tenants' => 'https://tenancyforlaravel.com/docs/v3/tenants', 'Tenant Identification' => 'https://tenancyforlaravel.com/docs/v3/tenant-identification', ]); } }