mirror of
https://gh.wpcy.net/https://github.com/presswizards/FreeScoutGPT.git
synced 2026-07-15 07:25:32 +08:00
24 lines
539 B
PHP
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;
|
|
}
|
|
}
|