Submit
Path:
~
/
/
opt
/
psa
/
admin
/
plib
/
modules
/
grafana
/
vendor
/
mezzio
/
mezzio-template
/
src
/
File Content:
TemplatePath.php
<?php declare (strict_types=1); namespace PleskGrafana\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; } }
Edit
Rename
Chmod
Delete
FILE
FOLDER
INFO
Name
Size
Permission
Action
Exception
---
0755
ArrayParametersTrait.php
1758 bytes
0644
DefaultParamsTrait.php
2261 bytes
0644
TemplatePath.php
635 bytes
0644
TemplateRendererInterface.php
1937 bytes
0644
N4ST4R_ID | Naxtarrr