for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Symplify\DefaultAutowire\Tests\Source;
class SomeServiceWithOptionalConstructorArguments
{
private $someService;
private $arg;
public function __construct(SomeService $someService = null, $arg = null)
$this->someService = $someService;
$this->arg = $arg;
}