diff options
author | Shitiz Garg <mail@dragooon.net> | 2014-06-18 19:53:43 +0530 |
---|---|---|
committer | Shitiz Garg <mail@dragooon.net> | 2014-06-21 03:31:23 +0530 |
commit | d15706bff55cb828eb0972d421bb15d042350652 (patch) | |
tree | d734a4c8c7447b9d39906fc9720a7dcab4289297 /phpBB/phpbb/profilefields | |
parent | 0e04748d7ff2ea7ab11f5b0d9761a54b5e8ebae4 (diff) | |
download | forums-d15706bff55cb828eb0972d421bb15d042350652.tar forums-d15706bff55cb828eb0972d421bb15d042350652.tar.gz forums-d15706bff55cb828eb0972d421bb15d042350652.tar.bz2 forums-d15706bff55cb828eb0972d421bb15d042350652.tar.xz forums-d15706bff55cb828eb0972d421bb15d042350652.zip |
[ticket/12730] Incorrect indentation for type_googleplus
PHPBB3-12730
Diffstat (limited to 'phpBB/phpbb/profilefields')
-rw-r--r-- | phpBB/phpbb/profilefields/type/type_googleplus.php | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/phpBB/phpbb/profilefields/type/type_googleplus.php b/phpBB/phpbb/profilefields/type/type_googleplus.php index 42a34f1a8a..6611f9811d 100644 --- a/phpBB/phpbb/profilefields/type/type_googleplus.php +++ b/phpBB/phpbb/profilefields/type/type_googleplus.php @@ -15,28 +15,28 @@ namespace phpbb\profilefields\type; class type_googleplus extends type_string { - /** - * {@inheritDoc} - */ - public function get_name_short() - { - return 'googleplus'; - } + /** + * {@inheritDoc} + */ + public function get_name_short() + { + return 'googleplus'; + } - /** - * {@inheritDoc} - */ - public function get_default_option_values() - { - return array( - 'field_length' => 20, - 'field_minlen' => 3, - 'field_maxlen' => '', - 'field_validation' => '[\w]+', - 'field_novalue' => '', - 'field_default_value' => '', - ); - } + /** + * {@inheritDoc} + */ + public function get_default_option_values() + { + return array( + 'field_length' => 20, + 'field_minlen' => 3, + 'field_maxlen' => '', + 'field_validation' => '[\w]+', + 'field_novalue' => '', + 'field_default_value' => '', + ); + } /** * {@inheritDoc} |