<?php namespace App\Service\Whm; interface TokenStorageInterface { public function get(): string; public function set(string $token): void; }