-
-
Notifications
You must be signed in to change notification settings - Fork 855
Open
Labels
Description
Hello,
i have a problem with the use of @internal tag in phpdoc,
like in BaseEngine class :
/**
* Override default column filter search.
*
* @param string $column
* @param string|callable $method
* @return $this
* @internal param $mixed ...,... All the individual parameters required for specified $method
* @internal string $1 Special variable that returns the requested search keyword.
*/
public function filterColumn($column, $method)
{... }
in my ide, and i think in others too, the method name is strikethrough, like with the @depreciation tag,
because this tag means that a method is not meant to be used outside of the class.
i think something like that could be more appropriate :
/** @var $params mixed All the individual parameters required for specified $method */
$params = func_get_args();
what do you think ?
thanks