12 lines
168 B
PHP
12 lines
168 B
PHP
<?php
|
|
|
|
namespace Friendica\Test\Util;
|
|
|
|
class AuthTestConfig
|
|
{
|
|
/** @var bool */
|
|
public static $authenticated = true;
|
|
/** @var int */
|
|
public static $user_id = 42;
|
|
}
|