PATH:
home
/
lab2454c
/
westernclear.net
/
vendor
/
spatie
/
laravel-ignition
/
src
/
Solutions
<?php namespace Spatie\LaravelIgnition\Solutions; use Spatie\Ignition\Contracts\Solution; class SuggestLivewireMethodNameSolution implements Solution { public function __construct( protected string $methodName, protected string $componentClass, protected string $suggested ) { } public function getSolutionTitle(): string { return "Possible typo `{$this->componentClass}::{$this->methodName}`"; } public function getDocumentationLinks(): array { return []; } public function getSolutionDescription(): string { return "Did you mean `{$this->componentClass}::{$this->suggested}`?"; } public function isRunnable(): bool { return false; } }
[-] SuggestLivewireMethodNameSolution.php
[edit]
[-] MakeViewVariableOptionalSolution.php
[edit]
[-] SuggestLivewirePropertyNameSolution.php
[edit]
[-] SuggestImportSolution.php
[edit]
[-] SuggestCorrectVariableNameSolution.php
[edit]
[+]
..
[-] RunMigrationsSolution.php
[edit]
[-] GenerateAppKeySolution.php
[edit]
[+]
SolutionProviders
[-] SuggestUsingCorrectDbNameSolution.php
[edit]
[+]
SolutionTransformers
[-] UseDefaultValetDbCredentialsSolution.php
[edit]
[-] LivewireDiscoverSolution.php
[edit]