FreeScoutGPT/vendor/tectalic/openai/tests/NullAuth.php
Михаил Баринов 7210a52e55 first commit
2023-04-14 01:35:57 +03:00

24 lines
539 B
PHP

<?php
/**
* Copyright (c) 2022-present Tectalic (https://tectalic.com)
*
* For copyright and license information, please view the LICENSE file that was distributed with this source code.
*
* Please see the README.md file for usage instructions.
*/
declare(strict_types=1);
namespace Tests;
use Http\Message\Authentication;
use Psr\Http\Message\RequestInterface;
final class NullAuth implements Authentication
{
public function authenticate(RequestInterface $request): RequestInterface
{
return $request;
}
}