Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.218.99.99
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
1 /
vendor /
facade /
ignition /
src /
Solutions /
Delete
Unzip
Name
Size
Permission
Date
Action
GenerateAppKeySolution.php
1010
B
-rw-r--r--
2020-11-17 16:24
LivewireDiscoverSolution.php
1.27
KB
-rw-r--r--
2020-11-17 16:24
MakeViewVariableOptionalSolution.php
2.92
KB
-rw-r--r--
2020-11-17 16:24
MissingPackageSolution.php
1.11
KB
-rw-r--r--
2020-11-17 16:24
RunMigrationsSolution.php
1.21
KB
-rw-r--r--
2020-11-17 16:24
SolutionTransformer.php
1.41
KB
-rw-r--r--
2020-11-17 16:24
SuggestCorrectVariableNameSolution.php
914
B
-rw-r--r--
2020-11-17 16:24
SuggestImportSolution.php
623
B
-rw-r--r--
2020-11-17 16:24
SuggestUsingCorrectDbNameSolution.php
767
B
-rw-r--r--
2020-11-17 16:24
UseDefaultValetDbCredentialsSolution.php
1.64
KB
-rw-r--r--
2020-11-17 16:24
Save
Rename
<?php namespace Facade\Ignition\Solutions; use Facade\IgnitionContracts\Solution; class SuggestCorrectVariableNameSolution implements Solution { /** @var string */ private $variableName; /** @var string */ private $viewFile; /** @var string|null */ private $suggested; 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 { return "Did you mean `$$this->suggested`?"; } public function isRunnable(): bool { return false; } }