mirror of
https://github.com/joomla-extensions/weblinks.git
synced 2024-11-15 17:17:08 +00:00
51 lines
794 B
PHP
51 lines
794 B
PHP
<?php
|
|
/**
|
|
* @package Joomla.Tests
|
|
* @subpackage Acceptance.tests
|
|
*
|
|
* @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved.
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
*/
|
|
|
|
namespace Shared;
|
|
|
|
/**
|
|
* Credentials for the user accounts
|
|
*
|
|
* @since 3.7.3
|
|
*/
|
|
class UserCredentials
|
|
{
|
|
/**
|
|
* Name of the user
|
|
*
|
|
* @var string
|
|
* @since 3.7.3
|
|
*/
|
|
public static $name = 'Test User';
|
|
|
|
/**
|
|
* Username
|
|
*
|
|
* @var string
|
|
* @since 3.7.3
|
|
*/
|
|
public static $username = 'testuser';
|
|
|
|
/**
|
|
* Password
|
|
*
|
|
* @var string
|
|
* @since 3.7.3
|
|
*/
|
|
public static $password = 'secure42';
|
|
|
|
/**
|
|
* Email of the user
|
|
*
|
|
* @var string
|
|
* @since 3.7.3
|
|
*/
|
|
public static $email = 'noreply@joomla.org';
|
|
}
|