mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-10 09:04:26 +02:00
13 lines
231 B
PHP
13 lines
231 B
PHP
<?php
|
|
|
|
namespace Friendica\Test\Util;
|
|
|
|
use Friendica\Security\Authentication;
|
|
|
|
class AuthenticationDouble extends Authentication
|
|
{
|
|
protected function setXAccMgmtStatusHeader(array $user_record)
|
|
{
|
|
// Don't set any header..
|
|
}
|
|
}
|