Skip to content

Commit

Permalink
Use a plausible phpdoc typehint
Browse files Browse the repository at this point in the history
Signed-off-by: William Desportes <williamdes@wdes.fr>
  • Loading branch information
williamdes committed May 15, 2020
1 parent 824a5b2 commit 795d708
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions libraries/classes/Advisor.php
Expand Up @@ -74,7 +74,7 @@ public function __construct(DatabaseInterface $dbi, ExpressionLanguage $expressi
function () {
},
/**
* @param null $arguments
* @param array $arguments
* @param float $num
*/
function ($arguments, $num) {
Expand All @@ -86,7 +86,7 @@ function ($arguments, $num) {
function () {
},
/**
* @param null $arguments
* @param array $arguments
* @param string $string
* @param int $start
* @param int $length
Expand All @@ -100,7 +100,7 @@ function ($arguments, $string, $start, $length) {
function () {
},
/**
* @param null $arguments
* @param array $arguments
* @param string $pattern
* @param string $subject
*/
Expand All @@ -113,7 +113,7 @@ function ($arguments, $pattern, $subject) {
function () {
},
/**
* @param null $arguments
* @param array $arguments
* @param float $num
* @param int $precision
*/
Expand All @@ -126,7 +126,7 @@ function ($arguments, $num, $precision) {
function () {
},
/**
* @param null $arguments
* @param array $arguments
* @param string $seconds
*/
function ($arguments, $seconds) {
Expand All @@ -138,7 +138,7 @@ function ($arguments, $seconds) {
function () {
},
/**
* @param null $arguments
* @param array $arguments
* @param int $value
* @param int $limes
* @param int $comma
Expand All @@ -152,7 +152,7 @@ function ($arguments, $value, $limes = 6, $comma = 0) {
function () {
},
/**
* @param null $arguments
* @param array $arguments
* @param int $value
*/
function ($arguments, $value) {
Expand Down

0 comments on commit 795d708

Please sign in to comment.