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