mirror of
https://github.com/opdavies/glassboxx-sdk-php.git
synced 2025-02-17 22:50:48 +00:00
16 lines
233 B
PHP
16 lines
233 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace Opdavies\Glassboxx\Traits;
|
||
|
|
||
|
trait UsesAuthTokenTrait
|
||
|
{
|
||
|
public function withAuthToken(string $authToken): self
|
||
|
{
|
||
|
$this->authToken = $authToken;
|
||
|
|
||
|
return $this;
|
||
|
}
|
||
|
}
|