Classes/Response/Processor/YouTube/PlayRelatedProcessor.php
Avoid using undefined variables such as '$queryParams' which will lead to PHP notices. Open
Open
return $this->urlService->mergeQueryParameters($url, $queryParams);
- Read upRead up
- Exclude checks
UndefinedVariable
Since: 2.8.0
Detects when a variable is used that has not been defined before.
Example
class Foo
{
private function bar()
{
// $message is undefined
echo $message;
}
}
Source https://phpmd.org/rules/cleancode.html#undefinedvariable
Avoid using undefined variables such as '$queryParams' which will lead to PHP notices. Open
Open
$queryParams['rel'] = $response->getConfiguration()->shouldPlayRelated() ? '1' : '0';
- Read upRead up
- Exclude checks
UndefinedVariable
Since: 2.8.0
Detects when a variable is used that has not been defined before.
Example
class Foo
{
private function bar()
{
// $message is undefined
echo $message;
}
}