mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-03 23:37:39 +02:00
[ticket/12514] Missed a few spaces in comments
PHPBB3-12514
This commit is contained in:
@@ -18,11 +18,11 @@ class phpbb_profilefield_type_bool_test extends phpbb_test_case
|
|||||||
protected $options = array();
|
protected $options = array();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets up basic test objects
|
* Sets up basic test objects
|
||||||
*
|
*
|
||||||
* @access public
|
* @access public
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
public function setUp()
|
public function setUp()
|
||||||
{
|
{
|
||||||
$user = $this->getMock('\phpbb\user');
|
$user = $this->getMock('\phpbb\user');
|
||||||
@@ -83,8 +83,8 @@ class phpbb_profilefield_type_bool_test extends phpbb_test_case
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @dataProvider validate_profile_field_data
|
* @dataProvider validate_profile_field_data
|
||||||
*/
|
*/
|
||||||
public function test_validate_profile_field($value, $field_options, $expected, $description)
|
public function test_validate_profile_field($value, $field_options, $expected, $description)
|
||||||
{
|
{
|
||||||
$field_options = array_merge($this->field_options, $field_options);
|
$field_options = array_merge($this->field_options, $field_options);
|
||||||
|
@@ -18,11 +18,11 @@ class phpbb_profilefield_type_date_test extends phpbb_test_case
|
|||||||
protected $user;
|
protected $user;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets up basic test objects
|
* Sets up basic test objects
|
||||||
*
|
*
|
||||||
* @access public
|
* @access public
|
||||||
* @return null
|
* @return null
|
||||||
*/
|
*/
|
||||||
public function setUp()
|
public function setUp()
|
||||||
{
|
{
|
||||||
$this->user = $this->getMock('\phpbb\user');
|
$this->user = $this->getMock('\phpbb\user');
|
||||||
@@ -84,8 +84,8 @@ class phpbb_profilefield_type_date_test extends phpbb_test_case
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @dataProvider profile_value_data
|
* @dataProvider profile_value_data
|
||||||
*/
|
*/
|
||||||
public function test_get_profile_value($value, $field_options, $expected, $description)
|
public function test_get_profile_value($value, $field_options, $expected, $description)
|
||||||
{
|
{
|
||||||
$field_options = array_merge($this->field_options, $field_options);
|
$field_options = array_merge($this->field_options, $field_options);
|
||||||
@@ -168,8 +168,8 @@ class phpbb_profilefield_type_date_test extends phpbb_test_case
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @dataProvider validate_profile_field_data
|
* @dataProvider validate_profile_field_data
|
||||||
*/
|
*/
|
||||||
public function test_validate_profile_field($value, $field_options, $expected, $description)
|
public function test_validate_profile_field($value, $field_options, $expected, $description)
|
||||||
{
|
{
|
||||||
$field_options = array_merge($this->field_options, $field_options);
|
$field_options = array_merge($this->field_options, $field_options);
|
||||||
|
@@ -18,11 +18,11 @@ class phpbb_profilefield_type_dropdown_test extends phpbb_test_case
|
|||||||
protected $dropdown_options = array();
|
protected $dropdown_options = array();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets up basic test objects
|
* Sets up basic test objects
|
||||||
*
|
*
|
||||||
* @access public
|
* @access public
|
||||||
* @return null
|
* @return null
|
||||||
*/
|
*/
|
||||||
public function setUp()
|
public function setUp()
|
||||||
{
|
{
|
||||||
$user = $this->getMock('\phpbb\user');
|
$user = $this->getMock('\phpbb\user');
|
||||||
@@ -116,8 +116,8 @@ class phpbb_profilefield_type_dropdown_test extends phpbb_test_case
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @dataProvider validate_profile_field_data
|
* @dataProvider validate_profile_field_data
|
||||||
*/
|
*/
|
||||||
public function test_validate_profile_field($value, $field_options, $expected, $description)
|
public function test_validate_profile_field($value, $field_options, $expected, $description)
|
||||||
{
|
{
|
||||||
$field_options = array_merge($this->field_options, $field_options);
|
$field_options = array_merge($this->field_options, $field_options);
|
||||||
@@ -159,8 +159,8 @@ class phpbb_profilefield_type_dropdown_test extends phpbb_test_case
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @dataProvider profile_value_data
|
* @dataProvider profile_value_data
|
||||||
*/
|
*/
|
||||||
public function test_get_profile_value($value, $field_options, $expected, $description)
|
public function test_get_profile_value($value, $field_options, $expected, $description)
|
||||||
{
|
{
|
||||||
$field_options = array_merge($this->field_options, $field_options);
|
$field_options = array_merge($this->field_options, $field_options);
|
||||||
|
@@ -17,11 +17,11 @@ class phpbb_profilefield_type_int_test extends phpbb_test_case
|
|||||||
protected $field_options;
|
protected $field_options;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets up basic test objects
|
* Sets up basic test objects
|
||||||
*
|
*
|
||||||
* @access public
|
* @access public
|
||||||
* @return null
|
* @return null
|
||||||
*/
|
*/
|
||||||
public function setUp()
|
public function setUp()
|
||||||
{
|
{
|
||||||
$user = $this->getMock('\phpbb\user');
|
$user = $this->getMock('\phpbb\user');
|
||||||
|
@@ -21,11 +21,11 @@ class phpbb_profilefield_type_string_test extends phpbb_test_case
|
|||||||
protected $field_options;
|
protected $field_options;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets up basic test objects
|
* Sets up basic test objects
|
||||||
*
|
*
|
||||||
* @access public
|
* @access public
|
||||||
* @return null
|
* @return null
|
||||||
*/
|
*/
|
||||||
public function setUp()
|
public function setUp()
|
||||||
{
|
{
|
||||||
global $request, $user, $cache;
|
global $request, $user, $cache;
|
||||||
@@ -147,8 +147,8 @@ class phpbb_profilefield_type_string_test extends phpbb_test_case
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @dataProvider validate_profile_field_data
|
* @dataProvider validate_profile_field_data
|
||||||
*/
|
*/
|
||||||
public function test_validate_profile_field($value, $field_options, $expected, $description)
|
public function test_validate_profile_field($value, $field_options, $expected, $description)
|
||||||
{
|
{
|
||||||
$field_options = array_merge($this->field_options, $field_options);
|
$field_options = array_merge($this->field_options, $field_options);
|
||||||
@@ -190,8 +190,8 @@ class phpbb_profilefield_type_string_test extends phpbb_test_case
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @dataProvider profile_value_data
|
* @dataProvider profile_value_data
|
||||||
*/
|
*/
|
||||||
public function test_get_profile_value($value, $field_options, $expected, $description)
|
public function test_get_profile_value($value, $field_options, $expected, $description)
|
||||||
{
|
{
|
||||||
$field_options = array_merge($this->field_options, $field_options);
|
$field_options = array_merge($this->field_options, $field_options);
|
||||||
|
@@ -19,11 +19,11 @@ class phpbb_profilefield_type_url_test extends phpbb_test_case
|
|||||||
protected $field_options;
|
protected $field_options;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets up basic test objects
|
* Sets up basic test objects
|
||||||
*
|
*
|
||||||
* @access public
|
* @access public
|
||||||
* @return null
|
* @return null
|
||||||
*/
|
*/
|
||||||
public function setUp()
|
public function setUp()
|
||||||
{
|
{
|
||||||
$user = $this->getMock('\phpbb\user');
|
$user = $this->getMock('\phpbb\user');
|
||||||
@@ -93,8 +93,8 @@ class phpbb_profilefield_type_url_test extends phpbb_test_case
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @dataProvider validate_profile_field_data
|
* @dataProvider validate_profile_field_data
|
||||||
*/
|
*/
|
||||||
public function test_validate_profile_field($value, $field_options, $expected, $description)
|
public function test_validate_profile_field($value, $field_options, $expected, $description)
|
||||||
{
|
{
|
||||||
$field_options = array_merge($this->field_options, $field_options);
|
$field_options = array_merge($this->field_options, $field_options);
|
||||||
|
Reference in New Issue
Block a user