Skip to content

Issue with @internal  #1336

@lk77

Description

@lk77

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

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions