Submit
Path:
~
/
/
proc
/
thread-self
/
root
/
opt
/
psa
/
admin
/
plib
/
modules
/
monitoring
/
vendor
/
mezzio
/
mezzio-template
/
src
/
File Content:
TemplatePath.php
<?php declare (strict_types=1); namespace PleskMonitoring\Mezzio\Template; use Stringable; class TemplatePath implements Stringable { public function __construct(protected string $path, protected ?string $namespace = null) { } /** * Casts to string by returning the path only. */ public function __toString() : string { return $this->path; } /** * Get the namespace */ public function getNamespace() : ?string { return $this->namespace; } /** * Get the path */ public function getPath() : string { return $this->path; } }
Submit
FILE
FOLDER
INFO
Name
Size
Permission
Action
Exception
---
0755
ArrayParametersTrait.php
1761 bytes
0644
DefaultParamsTrait.php
2264 bytes
0644
TemplatePath.php
638 bytes
0644
TemplateRendererInterface.php
1940 bytes
0644
N4ST4R_ID | Naxtarrr