One Hat Cyber Team
Your IP:
216.73.216.52
Server IP:
198.54.114.155
Server:
Linux server71.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
Server Software:
LiteSpeed
PHP Version:
5.6.40
Create File
|
Create Folder
Execute
Dir :
~
/
proc
/
thread-self
/
root
/
proc
/
thread-self
/
cwd
/
Edit File:
lazy.tar
Carbon/MessageFormatter/MessageFormatterMapperWeakType.php 0000644 00000002162 15112055447 0020025 0 ustar 00 <?php /** * This file is part of the Carbon package. * * (c) Brian Nesbitt <brian@nesbot.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\MessageFormatter; use Symfony\Component\Translation\Formatter\ChoiceMessageFormatterInterface; use Symfony\Component\Translation\Formatter\MessageFormatterInterface; if (!class_exists(LazyMessageFormatter::class, false)) { abstract class LazyMessageFormatter implements MessageFormatterInterface, ChoiceMessageFormatterInterface { abstract protected function transformLocale(?string $locale): ?string; public function format($message, $locale, array $parameters = []) { return $this->formatter->format( $message, $this->transformLocale($locale), $parameters ); } public function choiceFormat($message, $number, $locale, array $parameters = []) { return $this->formatter->choiceFormat($message, $number, $locale, $parameters); } } } Carbon/MessageFormatter/MessageFormatterMapperStrongType.php 0000644 00000001400 15112055447 0020404 0 ustar 00 <?php /** * This file is part of the Carbon package. * * (c) Brian Nesbitt <brian@nesbot.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\MessageFormatter; use Symfony\Component\Translation\Formatter\MessageFormatterInterface; if (!class_exists(LazyMessageFormatter::class, false)) { abstract class LazyMessageFormatter implements MessageFormatterInterface { public function format(string $message, string $locale, array $parameters = []): string { return $this->formatter->format( $message, $this->transformLocale($locale), $parameters ); } } } Carbon/MessageFormatter/error_log 0000644 00000001566 15112055447 0013151 0 ustar 00 [27-Nov-2025 05:35:47 UTC] PHP Fatal error: Uncaught Error: Interface "Symfony\Component\Translation\Formatter\MessageFormatterInterface" not found in /home/fluxyjvi/public_html/project/vendor/nesbot/carbon/lazy/Carbon/MessageFormatter/MessageFormatterMapperWeakType.php:18 Stack trace: #0 {main} thrown in /home/fluxyjvi/public_html/project/vendor/nesbot/carbon/lazy/Carbon/MessageFormatter/MessageFormatterMapperWeakType.php on line 18 [27-Nov-2025 05:51:56 UTC] PHP Fatal error: Uncaught Error: Interface "Symfony\Component\Translation\Formatter\MessageFormatterInterface" not found in /home/fluxyjvi/public_html/project/vendor/nesbot/carbon/lazy/Carbon/MessageFormatter/MessageFormatterMapperStrongType.php:17 Stack trace: #0 {main} thrown in /home/fluxyjvi/public_html/project/vendor/nesbot/carbon/lazy/Carbon/MessageFormatter/MessageFormatterMapperStrongType.php on line 17 Carbon/TranslatorWeakType.php 0000644 00000001455 15112055447 0012275 0 ustar 00 <?php /** * This file is part of the Carbon package. * * (c) Brian Nesbitt <brian@nesbot.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon; if (!class_exists(LazyTranslator::class, false)) { class LazyTranslator extends AbstractTranslator { /** * Returns the translation. * * @param string|null $id * @param array $parameters * @param string|null $domain * @param string|null $locale * * @return string */ public function trans($id, array $parameters = [], $domain = null, $locale = null) { return $this->translate($id, $parameters, $domain, $locale); } } } Carbon/error_log 0000644 00000001252 15112055447 0007671 0 ustar 00 [26-Nov-2025 19:05:55 UTC] PHP Fatal error: Uncaught Error: Class "Carbon\AbstractTranslator" not found in /home/fluxyjvi/public_html/project/vendor/nesbot/carbon/lazy/Carbon/TranslatorWeakType.php:15 Stack trace: #0 {main} thrown in /home/fluxyjvi/public_html/project/vendor/nesbot/carbon/lazy/Carbon/TranslatorWeakType.php on line 15 [26-Nov-2025 19:06:18 UTC] PHP Fatal error: Uncaught Error: Class "Carbon\AbstractTranslator" not found in /home/fluxyjvi/public_html/project/vendor/nesbot/carbon/lazy/Carbon/TranslatorStrongType.php:17 Stack trace: #0 {main} thrown in /home/fluxyjvi/public_html/project/vendor/nesbot/carbon/lazy/Carbon/TranslatorStrongType.php on line 17 Carbon/TranslatorStrongType.php 0000644 00000003246 15112055447 0012662 0 ustar 00 <?php /** * This file is part of the Carbon package. * * (c) Brian Nesbitt <brian@nesbot.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon; use Symfony\Component\Translation\MessageCatalogueInterface; if (!class_exists(LazyTranslator::class, false)) { class LazyTranslator extends AbstractTranslator implements TranslatorStrongTypeInterface { public function trans(?string $id, array $parameters = [], ?string $domain = null, ?string $locale = null): string { return $this->translate($id, $parameters, $domain, $locale); } public function getFromCatalogue(MessageCatalogueInterface $catalogue, string $id, string $domain = 'messages') { $messages = $this->getPrivateProperty($catalogue, 'messages'); if (isset($messages[$domain.MessageCatalogueInterface::INTL_DOMAIN_SUFFIX][$id])) { return $messages[$domain.MessageCatalogueInterface::INTL_DOMAIN_SUFFIX][$id]; } if (isset($messages[$domain][$id])) { return $messages[$domain][$id]; } $fallbackCatalogue = $this->getPrivateProperty($catalogue, 'fallbackCatalogue'); if ($fallbackCatalogue !== null) { return $this->getFromCatalogue($fallbackCatalogue, $id, $domain); } return $id; } private function getPrivateProperty($instance, string $field) { return (function (string $field) { return $this->$field; })->call($instance, $field); } } } Carbon/PHPStan/MacroStrongType.php 0000644 00000001760 15112055447 0013046 0 ustar 00 <?php declare(strict_types=1); /** * This file is part of the Carbon package. * * (c) Brian Nesbitt <brian@nesbot.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\PHPStan; if (!class_exists(LazyMacro::class, false)) { abstract class LazyMacro extends AbstractReflectionMacro { /** * {@inheritdoc} */ public function getFileName(): ?string { $file = $this->reflectionFunction->getFileName(); return (($file ? realpath($file) : null) ?: $file) ?: null; } /** * {@inheritdoc} */ public function getStartLine(): ?int { return $this->reflectionFunction->getStartLine(); } /** * {@inheritdoc} */ public function getEndLine(): ?int { return $this->reflectionFunction->getEndLine(); } } } Carbon/PHPStan/error_log 0000644 00000002072 15112055447 0011147 0 ustar 00 [27-Nov-2025 05:35:01 UTC] PHP Fatal error: Uncaught Error: Class "Carbon\PHPStan\AbstractReflectionMacro" not found in /home/fluxyjvi/public_html/project/vendor/nesbot/carbon/lazy/Carbon/PHPStan/MacroStrongType.php:17 Stack trace: #0 {main} thrown in /home/fluxyjvi/public_html/project/vendor/nesbot/carbon/lazy/Carbon/PHPStan/MacroStrongType.php on line 17 [27-Nov-2025 05:52:09 UTC] PHP Fatal error: Uncaught Error: Class "Carbon\PHPStan\AbstractMacro" not found in /home/fluxyjvi/public_html/project/vendor/nesbot/carbon/lazy/Carbon/PHPStan/AbstractMacroBuiltin.php:20 Stack trace: #0 {main} thrown in /home/fluxyjvi/public_html/project/vendor/nesbot/carbon/lazy/Carbon/PHPStan/AbstractMacroBuiltin.php on line 20 [27-Nov-2025 07:07:11 UTC] PHP Fatal error: Uncaught Error: Class "Carbon\PHPStan\AbstractReflectionMacro" not found in /home/fluxyjvi/public_html/project/vendor/nesbot/carbon/lazy/Carbon/PHPStan/MacroWeakType.php:17 Stack trace: #0 {main} thrown in /home/fluxyjvi/public_html/project/vendor/nesbot/carbon/lazy/Carbon/PHPStan/MacroWeakType.php on line 17 Carbon/PHPStan/AbstractMacroStatic.php 0000644 00000002554 15112055447 0013645 0 ustar 00 <?php declare(strict_types=1); /** * This file is part of the Carbon package. * * (c) Brian Nesbitt <brian@nesbot.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\PHPStan; use PHPStan\BetterReflection\Reflection; use ReflectionMethod; if (!class_exists(AbstractReflectionMacro::class, false)) { abstract class AbstractReflectionMacro extends AbstractMacro { /** * {@inheritdoc} */ public function getReflection(): ?Reflection\Adapter\ReflectionMethod { if ($this->reflectionFunction instanceof Reflection\Adapter\ReflectionMethod) { return $this->reflectionFunction; } if ($this->reflectionFunction instanceof Reflection\ReflectionMethod) { return new Reflection\Adapter\ReflectionMethod($this->reflectionFunction); } return $this->reflectionFunction instanceof ReflectionMethod ? new Reflection\Adapter\ReflectionMethod( Reflection\ReflectionMethod::createFromName( $this->reflectionFunction->getDeclaringClass()->getName(), $this->reflectionFunction->getName() ) ) : null; } } } Carbon/PHPStan/AbstractMacroBuiltin.php 0000644 00000001664 15112055447 0014025 0 ustar 00 <?php declare(strict_types=1); /** * This file is part of the Carbon package. * * (c) Brian Nesbitt <brian@nesbot.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\PHPStan; use PHPStan\BetterReflection\Reflection; use ReflectionMethod; if (!class_exists(AbstractReflectionMacro::class, false)) { abstract class AbstractReflectionMacro extends AbstractMacro { /** * {@inheritdoc} */ public function getReflection(): ?ReflectionMethod { if ($this->reflectionFunction instanceof Reflection\ReflectionMethod) { return new Reflection\Adapter\ReflectionMethod($this->reflectionFunction); } return $this->reflectionFunction instanceof ReflectionMethod ? $this->reflectionFunction : null; } } } Carbon/PHPStan/MacroWeakType.php 0000644 00000002126 15112055447 0012456 0 ustar 00 <?php declare(strict_types=1); /** * This file is part of the Carbon package. * * (c) Brian Nesbitt <brian@nesbot.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Carbon\PHPStan; if (!class_exists(LazyMacro::class, false)) { abstract class LazyMacro extends AbstractReflectionMacro { /** * {@inheritdoc} * * @return string|false */ public function getFileName() { $file = $this->reflectionFunction->getFileName(); return (($file ? realpath($file) : null) ?: $file) ?: null; } /** * {@inheritdoc} * * @return int|false */ public function getStartLine() { return $this->reflectionFunction->getStartLine(); } /** * {@inheritdoc} * * @return int|false */ public function getEndLine() { return $this->reflectionFunction->getEndLine(); } } }
Simpan