Файловый менеджер - Редактировать - /home/digitalm/yhubita/wp-content/plugins/wp-optimize/vendor/intervention/httpauth/src/Vault/BasicVault.php
Назад
<?php namespace Intervention\HttpAuth\Vault; use Intervention\HttpAuth\AbstractVault; use Intervention\HttpAuth\Directive; use Intervention\HttpAuth\Key; class BasicVault extends AbstractVault { /** * Determine if given key is able to unlock (access) vault. * * @param Key $key * @return bool */ public function unlocksWithKey(Key $key): bool { $username_match = $this->getUsername() == $key->getUsername(); $password_match = $this->getPassword() == $key->getPassword(); return $username_match && $password_match; } /** * Return auth directive * * @return Directive */ public function getDirective(): Directive { return new Directive('basic', [ 'realm' => $this->getRealm(), 'charset' => 'UTF-8', ]); } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.23 | Генерация страницы: 0.05 |
proxy
|
phpinfo
|
Настройка