for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Symplify\NetteAdapterForSymfonyBundles\Tests\ContainerSource;
final class AutowiredService
{
/**
* @var SomeService
*/
private $someService;
public function __construct(SomeService $someService)
$this->someService = $someService;
}
public function getSomeService() : SomeService
return $this->someService;