Ngiler SH3LL 360
Home
Information
Create File
Create Folder
:
/
home
/
tbf
/
cursbackend
/
vendor
/
facade
/
ignition
/
src
/
Solutions
/
Information Server
MySQL :
OFF
Perl :
OFF
CURL :
ON
WGET :
OFF
PKEXEC :
OFF
Directive
Local Value
IP Address
89.40.16.97
System
Linux server.atelieruldeit.ro 3.10.0-1160.el7.x86_64 #1 SMP Mon Oct 19 16:18:59 UTC 2020 x86_64
User
tbf
PHP Version
7.3.33
Software
Apache
Doc root
Writable
close
Edit File :
SuggestCorrectVariableNameSolution.php
| Size :
929
B
Copy
<?php namespace Facade\Ignition\Solutions; use Facade\IgnitionContracts\Solution; class SuggestCorrectVariableNameSolution implements Solution { /** @var string */ private $variableName; /** @var string */ private $viewFile; public function __construct($variableName = null, $viewFile = null, $suggested = null) { $this->variableName = $variableName; $this->viewFile = $viewFile; $this->suggested = $suggested; } public function getSolutionTitle(): string { return 'Possible typo $'.$this->variableName; } public function getDocumentationLinks(): array { return []; } public function getSolutionDescription(): string { $path = str_replace(base_path().'/', '', $this->viewFile); return "Did you mean `$$this->suggested`?"; } public function isRunnable(): bool { return false; } }
Back