26         $plusJob = $taskFactory->createTask(PlusJob::class, [1, 2]);
    27         $this->assertTrue($plusJob instanceof 
PlusJob);
    28         $plusJobInput = $plusJob->getInput();
    31         $this->assertTrue($plusJobInput[0]->equals($one));
    37         $plusJob = $taskFactory->createTask(PlusJob::class, [
$a, 
$b]);
    38         $this->assertTrue($plusJob instanceof PlusJob);
    39         $plusJobInput = $plusJob->getInput();
    40         $this->assertTrue($plusJobInput[0]->equals($one));
 
Customizing of pimple-DIC for ILIAS. 
 
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
 
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples