Showing 35 of 47 total issues
Method getRelatedSearches
has 26 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public function getRelatedSearches()
{
$relatedSearches = [];
if ($this->isMobile()) {
$items = $this->cssQuery('#botstuff div:not(#bres) a.QsZ7bb');
Method __construct
has 8 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
$host = 'www.google.com',
$path = '/search',
$scheme = 'https',
array $query = [],
$hash = '',
Method build
has 8 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
$scheme = null,
$host = null,
$path = null,
array $query = [],
$hash = null,
Method build
has 8 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
$scheme = null,
$host = null,
$path = null,
array $query = [],
$hash = null,
Method __construct
has 8 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
$host = 'google.com',
$path = '/search',
$scheme = 'https',
array $query = [],
$hash = '',
Function parse
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
Open
public function parse(GoogleDom $googleDOM, \DomElement $node, IndexedResultSet $resultSet)
{
$item = [
'title' => function () use ($googleDOM, $node) {
$aTag = $googleDOM->getXpath()->query('descendant::h3/a[2]', $node)->item(0);
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Avoid too many return
statements within this method. Open
Open
return new BaseResult(NaturalResultType::IMAGE_GROUP_IMAGE, $data);
Avoid too many return
statements within this method. Open
Open
return MediaFactory::createMediaFromSrc($img->getattribute('src'));
Avoid too many return
statements within this method. Open
Open
return MediaFactory::createMediaFromSrc($img->getAttribute('src'));
Avoid too many return
statements within this method. Open
Open
return null;
Avoid too many return
statements within this method. Open
Open
return $aTag->nodeValue;
Avoid too many return
statements within this method. Open
Open
return $aTag->nodeValue;
Avoid too many return
statements within this method. Open
Open
return null;
Avoid too many return
statements within this method. Open
Open
return new BaseResult(NaturalResultType::IMAGE_GROUP_IMAGE, $data);
Function parse
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
Open
public function parse(GoogleDom $dom, \DomElement $node, IndexedResultSet $resultSet)
{
$data = $this->parseNode($dom, $node);
$resultTypes = [NaturalResultType::CLASSICAL];
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"