File manager - Edit - /var/www/payraty/hris/vendor/twilio/sdk/src/Twilio/AuthStrategy/AuthStrategy.php
Back
<?php namespace Twilio\AuthStrategy; /** * Class AuthStrategy * Abstract parent class for all authentication strategies - Basic, Bearer Token, NoAuth etc. * @property string $authType The type of authentication strategy */ abstract class AuthStrategy { private $authType; public function __construct(string $authType) { $this->authType = $authType; } public function getAuthType(): string { return $this->authType; } /** * Returns the value to be set in the authentication header * * @return string the authentication string */ abstract public function getAuthString(): string; }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0.43 |
proxy
|
phpinfo
|
Settings