芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/.trash/libraries/vendor/typo3/phar-stream-wrapper/src/Resolver/PharInvocation.php
baseName = $baseName; $this->alias = $alias; } /** * @return string */ public function __toString(): string { return $this->baseName; } /** * @return string */ public function getBaseName(): string { return $this->baseName; } /** * @return null|string */ public function getAlias(): string { return $this->alias; } /** * @return bool */ public function isConfirmed(): bool { return $this->confirmed; } public function confirm() { $this->confirmed = true; } /** * @param string $name * @return mixed|null */ public function getVariable(string $name) { return $this->variables[$name] ?? null; } /** * @param string $name * @param mixed $value */ public function setVariable(string $name, $value) { $this->variables[$name] = $value; } /** * @param PharInvocation $other * @return bool */ public function equals(PharInvocation $other): bool { return $other->baseName === $this->baseName && $other->alias === $this->alias; } }