for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Install GitHub App
<?php
/*
* This file is part of the OverblogGraphQLBundle package.
*
* (c) Overblog <http://github.com/overblog/>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Overblog\GraphQLBundle\Tests\Resolver;
abstract class AbstractSimpleResolverTest extends AbstractResolverTest
{
protected function getResolverSolutionsMapping()
$totoSolution = new \stdClass();
$totoSolution->name = 'Toto';
return $mapping = [
$mapping
This check looks for variable assignements that are either overwritten by other assignments or where the variable is not used subsequently.
$myVar = 'Value'; $higher = false; if (rand(1, 6) > 3) { $higher = true; } else { $higher = false; }
Both the $myVar assignment in line 1 and the $higher assignment in line 2 are dead. The first because $myVar is never used and the second because $higher is always overwritten for every possible time line.
$myVar
$higher
'Toto' => ['solution' => $totoSolution],
];
}
public function testResolveKnownArg()
$arg = $this->resolver->resolve('Toto');
$this->assertInstanceOf('stdClass', $arg);
$this->assertEquals('Toto', $arg->name);
/**
* @expectedException \Overblog\GraphQLBundle\Resolver\UnresolvableException
public function testResolveUnknownArg()
$this->resolver->resolve('Fake');
This check looks for variable assignements that are either overwritten by other assignments or where the variable is not used subsequently.
Both the
$myVar
assignment in line 1 and the$higher
assignment in line 2 are dead. The first because$myVar
is never used and the second because$higher
is always overwritten for every possible time line.