for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Symplify\DefaultAutowire\Tests\Source;
use Symplify\DefaultAutowire\Tests\Resources\Repository\SomeRepository;
final class SomeService
{
/**
* @var SomeRepository
*/
private $someRepository;
public function __construct(SomeRepository $someRepository)
$this->someRepository = $someRepository;
}