mirror of
https://github.com/friendica/friendica
synced 2024-11-10 01:42:53 +00:00
11 lines
168 B
PHP
11 lines
168 B
PHP
<?php
|
|
|
|
namespace Friendica\Test\Util;
|
|
|
|
class AuthTestConfig
|
|
{
|
|
/** @var bool */
|
|
public static $authenticated = true;
|
|
/** @var int */
|
|
public static $user_id = 42;
|
|
}
|