Issues (66)

tests/Command/JobsTest.php (2 issues)

1
<?php
2
3
class JobsTest extends \PHPUnit\Framework\TestCase
4
{
5
	public function testRun()
6
	{
7
		$cfgfile = dirname( dirname( __DIR__ ) ) . '/src/aimeos-settings.php';
8
		$argv = array( "jobs.php", "--config=$cfgfile", "index/optimize", "unittest" );
9
10
		$result = \Aimeos\Slim\Command\Jobs::run( $argv );
0 ignored issues
show
The assignment to $result is dead and can be removed.
Loading history...
Are you sure the assignment to $result is correct as Aimeos\Slim\Command\Jobs::run($argv) targeting Aimeos\Slim\Command\Jobs::run() seems to always return null.

This check looks for function or method calls that always return null and whose return value is assigned to a variable.

class A
{
    function getObject()
    {
        return null;
    }

}

$a = new A();
$object = $a->getObject();

The method getObject() can return nothing but null, so it makes no sense to assign that value to a variable.

The reason is most likely that a function or method is imcomplete or has been reduced for debug purposes.

Loading history...
11
12
		$this->expectOutputString( "Executing the Aimeos jobs for \"unittest\"\n" );
13
	}
14
15
16
	public function testRunHelp()
17
	{
18
		$this->expectException( \Aimeos\Slim\Command\Exception::class );
19
		\Aimeos\Slim\Command\Cache::run( array( "jobs.php", "--help" ) );
20
	}
21
}
22