phpdoc: added array type declaration for a method parameter

This commit is contained in:
Shakir El Amrani
2022-12-25 15:42:23 +00:00
parent c758d20123
commit 5244cc028a
+2 -4
View File
@@ -753,12 +753,10 @@ class PrettyPageHandler extends Handler
/**
* Set the application paths.
*
* @param array $applicationPaths
*
*
* @return void
*/
public function setApplicationPaths($applicationPaths)
public function setApplicationPaths(array $applicationPaths)
{
$this->applicationPaths = $applicationPaths;
}