esse é todo o meu codigo da entidade aluno:
<?php
namespace Alura\Doctrine\Entity;
use Alura\Doctrine\Entity\Curso;
use Alura\Doctrine\Entity\Telefone;
use Doctrine\Common\Collections\Collection;
use Doctrine\Common\Collections\ArrayCollection;
/**
* @Entity
*/
class Aluno
{
/**
* @Id
* @GeneratedValue
* @Column(type="integer")
*/
private $id;
/**
* @column(type="string")
*/
private $nome;
/**
* @OneToMany(targetEntity="Telefone", mappedBy="aluno", cascade={"remove","persist"})
*/
private $telefones;
/**
* ManyToMany(targetEntity="Curso", mappedBy="alunos")
*/
private $cursos;
public function __construct(){
$this->telefones = new ArrayCollection();
$this->cursos = new ArrayCollection();
}
public function toArray() : array
{
return[
"id" -> $this->id,
"nome" -> $this->nome
];
}
public function getId() : int
{
return $this->id;
}
public function setNome(string $nome) : self
{
$this->nome = $nome;
return $this;
}
public function getNome() : string
{
return $this->nome;
}
public function addTelefone(Telefone $telefone): self
{
$this->telefones->add($telefone);
$telefone->setAluno($this);
return $this;
}
public function getTelefones(): Collection
{
return $this->telefones;
}
public function addCurso(Curso $curso): self
{
if($this->cursos->contains($curso)){
return $this;
}
$this->cursos->add($curso);
$curso->addAluno($this);
return $this;
}
public function getCursos(): Collection
{
return $this->cursos;
}
}
esse é todo meu codigo da entidade curso:
<?php
namespace Alura\Doctrine\Entity;
use Alura\Doctrine\Entity\Aluno;
use Doctrine\Common\Collections\Collection;
use Doctrine\Common\Collections\ArrayCollection;
/**
* @Entity
*/
class Curso
{
/**
* @Id
* @GeneratedValue
* @Column(type="integer")
*/
private $id;
/**
* @Column(type="string")
*/
private $nome;
/**
* @ManyToMany(targetEntity="Aluno", inversedBy="cursos")
*/
private $alunos;
public function __construct(){
$this->alunos = new ArrayCollection();
}
/* --------------------------------------------------------- */
public function getId(): int
{
return $this->id;
}
public function getNome(): string
{
return $this->nome;
}
public function setNome($nome): self
{
$this->nome = $nome;
return $this;
}
public function addAluno(Aluno $aluno): self
{
if($this->alunos->contains($aluno)){
return $this;
}
$this->alunos->add($aluno);
$aluno->addCurso($this);
return $this;
}
public function getAlunos(): Collection
{
return $this->alunos;
}
}
e esse é o meu command de vincular aluno ao curso:
<?php
use Alura\Doctrine\Entity\Aluno;
use Alura\Doctrine\Entity\Curso;
use Alura\Doctrine\Helper\EntityManagerFactory;
require_once __DIR__ . '/../vendor/autoload.php';
$entityManagerFactory = new EntityManagerFactory();
$entityManager = $entityManagerFactory->getEntityManager();
$id_aluno = $argv[1];
$id_curso = $argv[2];
$aluno = $entityManager->find(Aluno::class, $id_aluno);
echo "aluno: " . $aluno->getNome();
echo "\n";
$curso = $entityManager->find(Curso::class, $id_curso);
echo "curso: " . $curso->getNome();
echo "\n";
$curso->addAluno($aluno);
$entityManager->flush();