Linux vmi2545633.contaboserver.net 6.1.0-32-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.129-1 (2025-03-06) x86_64
Apache/2.4.62 (Debian)
Server IP : 127.0.0.1 & Your IP : 127.0.0.1
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
softmedya.net /
vendor /
sebastian /
type /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
exception
[ DIR ]
drwxr-xr-x
2025-08-09 06:55
type
[ DIR ]
drwxr-xr-x
2025-08-09 06:55
Parameter.php
923
B
-rw-r--r--
2025-08-09 06:55
ReflectionMapper.php
6.63
KB
-rw-r--r--
2025-08-09 06:55
TypeName.php
2.38
KB
-rw-r--r--
2025-08-09 06:55
Save
Rename
<?php declare(strict_types=1); /* * This file is part of sebastian/type. * * (c) Sebastian Bergmann <sebastian@phpunit.de> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace SebastianBergmann\Type; /** * @no-named-arguments Parameter names are not covered by the backward compatibility promise for this library */ final readonly class Parameter { /** * @var non-empty-string */ private string $name; private Type $type; /** * @param non-empty-string $name */ public function __construct(string $name, Type $type) { $this->name = $name; $this->type = $type; } /** * @return non-empty-string */ public function name(): string { return $this->name; } public function type(): Type { return $this->type; } }