__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
declare(strict_types=1);
namespace TYPO3\PharStreamWrapper\Phar;
/*
* This file is part of the TYPO3 project.
*
* It is free software; you can redistribute it and/or modify it under the terms
* of the MIT License (MIT). For the full copyright and license information,
* please read the LICENSE file that was distributed with this source code.
*
* The TYPO3 project - inspiring people to share!
*/
class Container
{
/**
* @var Stub
*/
private $stub;
/**
* @var Manifest
*/
private $manifest;
public function __construct(Stub $stub, Manifest $manifest)
{
$this->stub = $stub;
$this->manifest = $manifest;
}
public function getStub(): Stub
{
return $this->stub;
}
public function getManifest(): Manifest
{
return $this->manifest;
}
public function getAlias(): string
{
return $this->manifest->getAlias() ?: $this->stub->getMappedAlias();
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Container.php | File | 984 B | 0664 |
|
| DeserializationException.php | File | 506 B | 0664 |
|
| Manifest.php | File | 3.28 KB | 0664 |
|
| Reader.php | File | 7.5 KB | 0664 |
|
| ReaderException.php | File | 497 B | 0664 |
|
| Stub.php | File | 1.35 KB | 0664 |
|