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 : 3.14.152.212
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
3 /
endroid /
qr-code /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
Exception
[ DIR ]
drwxr-xr-x
2020-11-27 09:00
Factory
[ DIR ]
drwxr-xr-x
2020-11-27 09:00
Writer
[ DIR ]
drwxr-xr-x
2020-11-27 09:00
ErrorCorrectionLevel.php
888
B
-rw-r--r--
2020-11-27 09:00
LabelAlignment.php
503
B
-rw-r--r--
2020-11-27 09:00
QrCode.php
11.94
KB
-rw-r--r--
2020-11-27 09:00
QrCodeInterface.php
1.38
KB
-rw-r--r--
2020-11-27 09:00
WriterRegistry.php
2.23
KB
-rw-r--r--
2020-11-27 09:00
WriterRegistryInterface.php
594
B
-rw-r--r--
2020-11-27 09:00
Save
Rename
<?php declare(strict_types=1); /* * (c) Jeroen van den Enden <info@endroid.nl> * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. */ namespace Endroid\QrCode; interface QrCodeInterface { public function getText(): string; public function getSize(): int; public function getMargin(): int; public function getForegroundColor(): array; public function getBackgroundColor(): array; public function getEncoding(): string; public function getRoundBlockSize(): bool; public function getErrorCorrectionLevel(): ErrorCorrectionLevel; public function getLogoPath(): ?string; public function getLogoWidth(): ?int; public function getLogoHeight(): ?int; public function getLabel(): ?string; public function getLabelFontPath(): string; public function getLabelFontSize(): int; public function getLabelAlignment(): string; public function getLabelMargin(): array; public function getValidateResult(): bool; public function getWriterOptions(): array; public function getContentType(): string; public function setWriterRegistry(WriterRegistryInterface $writerRegistry): void; public function writeString(): string; public function writeDataUri(): string; public function writeFile(string $path): void; public function getData(): array; }