Skip to content

Commit 8f53b97

Browse files
committed
Merge branch '3.3.x'
2 parents b94dd26 + 1344206 commit 8f53b97

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

mimetype/guesser_interface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public function get_priority();
4242
/**
4343
* Set the guesser priority
4444
*
45-
* @param int Guesser priority
45+
* @param int $priority Guesser priority
4646
*
4747
* @return void
4848
*/

storage/file_info.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public function __construct(adapter_interface $adapter, $path)
5656
/**
5757
* Load propertys lazily
5858
*
59-
* @param string name The property name.
59+
* @param string $name The property name.
6060
*
6161
* @return string Returns the property value
6262
*/

storage/storage.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@ protected function get_adapter()
9999
/**
100100
* Dumps content into a file
101101
*
102-
* @param string path The file to be written to.
103-
* @param string content The data to write into the file.
102+
* @param string $path The file to be written to.
103+
* @param string $content The data to write into the file.
104104
*
105105
* @throws exception When the file already exists
106106
* When the file cannot be written

template/template.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public function set_style($style_directories = array('styles'));
5454
* Note: Templates are still compiled to phpBB's cache directory.
5555
*
5656
* @param string|array $names Array of names or string of name of template(s) in inheritance tree order, used by extensions.
57-
* @param string|array or string $paths Array of style paths, relative to current root directory
57+
* @param string|array $paths Array of style paths, relative to current root directory
5858
* @return \phpbb\template\template $this
5959
*/
6060
public function set_custom_style($names, $paths);

template/twig/twig.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ public function set_style($style_directories = array('styles'))
224224
* 'name' => 'adm',
225225
* 'ext_path' => 'adm/style/',
226226
* )
227-
* @param string|array of string $paths Array of style paths, relative to current root directory
227+
* @param string|array $paths Array of style paths, relative to current root directory
228228
* @return \phpbb\template\template $this
229229
*/
230230
public function set_custom_style($names, $paths)

user_loader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ public function get_username($user_id, $mode, $guest_username = false, $custom_p
186186
* @param bool $query Should we query the database if this user has not yet been loaded?
187187
* Typically this should be left as false and you should make sure
188188
* you load users ahead of time with load_users()
189-
* @param bool @lazy If true, will be lazy loaded (requires JS)
189+
* @param bool $lazy If true, will be lazy loaded (requires JS)
190190
* @return array
191191
*/
192192
public function get_avatar($user_id, $query = false, $lazy = false)

version_helper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ public function set_current_version($version)
134134
/**
135135
* Over-ride the stability to force check to include unstable versions
136136
*
137-
* @param null|string Null to not force stability, 'unstable' or 'stable' to
137+
* @param null|string $stability Null to not force stability, 'unstable' or 'stable' to
138138
* force the corresponding stability
139139
* @return version_helper
140140
*/

0 commit comments

Comments
 (0)