Could you please give me some guidance on how I should document this piece of code with DocBloc documentation?
private $entityManager;
public function __construct($entityManager) {
parent::__construct();
$this->entityManager = $entityManager;
}
The $entityManager
is an instance of the EnitiyManager class.