One Hat Cyber Team
Your IP:
216.73.216.43
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
/
self
/
root
/
home
/
fluxyjvi
/
www
/
assets
/
images
/
View File Name :
Note.php.tar
home/fluxyjvi/public_html/project/vendor/laravel/prompts/src/Note.php 0000644 00000001276 15107626355 0022200 0 ustar 00 <?php namespace Laravel\Prompts; class Note extends Prompt { /** * Create a new Note instance. */ public function __construct(public string $message, public ?string $type = null) { // } /** * Display the note. */ public function display(): void { $this->prompt(); } /** * Display the note. */ public function prompt(): bool { $this->capturePreviousNewLines(); $this->state = 'submit'; static::output()->write($this->renderTheme()); return true; } /** * Get the value of the prompt. */ public function value(): bool { return true; } }