Private
Public Access
1
0

create first working communication

This commit is contained in:
2016-10-25 11:19:50 +02:00
parent 23f034bc1c
commit 5b4fdd088c
27 changed files with 1037 additions and 2546 deletions

View File

@@ -22,701 +22,37 @@ class Grid
*/
private $id;
/**
* @var GridCol
*
* @ORM\OneToMany(targetEntity="Mine\SeekerBundle\Entity\GridCol", mappedBy="gridRow")
*/
private $gridRow0;
/**
* @var GridCol
*
* @ORM\OneToMany(targetEntity="Mine\SeekerBundle\Entity\GridCol", mappedBy="gridRow")
*/
private $gridRow1;
/**
* @var GridCol
*
* @ORM\OneToMany(targetEntity="Mine\SeekerBundle\Entity\GridCol", mappedBy="gridRow")
*/
private $gridRow2;
/**
* @var GridCol
*
* @ORM\OneToMany(targetEntity="Mine\SeekerBundle\Entity\GridCol", mappedBy="gridRow")
*/
private $gridRow3;
/**
* @var GridCol
*
* @ORM\OneToMany(targetEntity="Mine\SeekerBundle\Entity\GridCol", mappedBy="gridRow")
*/
private $gridRow4;
/**
* @var GridCol
*
* @ORM\OneToMany(targetEntity="Mine\SeekerBundle\Entity\GridCol", mappedBy="gridRow")
*/
private $gridRow5;
/**
* @var GridCol
*
* @ORM\OneToMany(targetEntity="Mine\SeekerBundle\Entity\GridCol", mappedBy="gridRow")
*/
private $gridRow6;
/**
* @var GridCol
*
* @ORM\OneToMany(targetEntity="Mine\SeekerBundle\Entity\GridCol", mappedBy="gridRow")
*/
private $gridRow7;
/**
* @var GridCol
*
* @ORM\OneToMany(targetEntity="Mine\SeekerBundle\Entity\GridCol", mappedBy="gridRow")
*/
private $gridRow8;
/**
* @var GridCol
*
* @ORM\OneToMany(targetEntity="Mine\SeekerBundle\Entity\GridCol", mappedBy="gridRow")
*/
private $gridRow9;
/**
* @var GridCol
*
* @ORM\OneToMany(targetEntity="Mine\SeekerBundle\Entity\GridCol", mappedBy="gridRow")
*/
private $gridRow10;
/**
* @var GridCol
*
* @ORM\OneToMany(targetEntity="Mine\SeekerBundle\Entity\GridCol", mappedBy="gridRow")
*/
private $gridRow11;
/**
* @var GridCol
*
* @ORM\OneToMany(targetEntity="Mine\SeekerBundle\Entity\GridCol", mappedBy="gridRow")
*/
private $gridRow12;
/**
* @var GridCol
*
* @ORM\OneToMany(targetEntity="Mine\SeekerBundle\Entity\GridCol", mappedBy="gridRow")
*/
private $gridRow13;
/**
* @var GridCol
*
* @ORM\OneToMany(targetEntity="Mine\SeekerBundle\Entity\GridCol", mappedBy="gridRow")
*/
private $gridRow14;
/**
* @var GridCol
*
* @ORM\OneToMany(targetEntity="Mine\SeekerBundle\Entity\GridCol", mappedBy="gridRow")
*/
private $gridRow15;
/**
* @var PlayedGame
*
* @ORM\OneToOne(targetEntity="Mine\SeekerBundle\Entity\PlayedGame", inversedBy="grid")
* @ORM\JoinColumn(name="played_game", referencedColumnName="id")
* @ORM\OneToOne(targetEntity="Mine\SeekerBundle\Entity\PlayedGame", inversedBy="grid", cascade={"persist"})
*/
private $playedGame;
/**
* Get id
* @var GridCol
*
* @return int
* @ORM\OneToMany(targetEntity="Mine\SeekerBundle\Entity\GridRow", mappedBy="grid", cascade={"persist"})
* @ORM\JoinColumn(name="grid_row", referencedColumnName="id", onDelete="CASCADE")
*/
public function getId()
{
return $this->id;
}
private $gridRow;
/**
* Constructor
*/
public function __construct()
{
$this->gridRow0 = new ArrayCollection();
$this->gridRow1 = new ArrayCollection();
$this->gridRow2 = new ArrayCollection();
$this->gridRow3 = new ArrayCollection();
$this->gridRow4 = new ArrayCollection();
$this->gridRow5 = new ArrayCollection();
$this->gridRow6 = new ArrayCollection();
$this->gridRow7 = new ArrayCollection();
$this->gridRow8 = new ArrayCollection();
$this->gridRow9 = new ArrayCollection();
$this->gridRow10 = new ArrayCollection();
$this->gridRow11 = new ArrayCollection();
$this->gridRow12 = new ArrayCollection();
$this->gridRow13 = new ArrayCollection();
$this->gridRow14 = new ArrayCollection();
$this->gridRow15 = new ArrayCollection();
$this->gridRow = new ArrayCollection();
}
/**
* Add gridRow0
* Get id
*
* @param GridCol $gridRow0
*
* @return Grid
* @return integer
*/
public function addGridRow0(GridCol $gridRow0)
public function getId()
{
$this->gridRow0[] = $gridRow0;
return $this;
}
/**
* Remove gridRow0
*
* @param GridCol $gridRow0
*/
public function removeGridRow0(GridCol $gridRow0)
{
$this->gridRow0->removeElement($gridRow0);
}
/**
* Get gridRow0
*
* @return \Doctrine\Common\Collections\Collection
*/
public function getGridRow0()
{
return $this->gridRow0;
}
/**
* Add gridRow1
*
* @param GridCol $gridRow1
*
* @return Grid
*/
public function addGridRow1(GridCol $gridRow1)
{
$this->gridRow1[] = $gridRow1;
return $this;
}
/**
* Remove gridRow1
*
* @param GridCol $gridRow1
*/
public function removeGridRow1(GridCol $gridRow1)
{
$this->gridRow1->removeElement($gridRow1);
}
/**
* Get gridRow1
*
* @return \Doctrine\Common\Collections\Collection
*/
public function getGridRow1()
{
return $this->gridRow1;
}
/**
* Add gridRow2
*
* @param GridCol $gridRow2
*
* @return Grid
*/
public function addGridRow2(GridCol $gridRow2)
{
$this->gridRow2[] = $gridRow2;
return $this;
}
/**
* Remove gridRow2
*
* @param GridCol $gridRow2
*/
public function removeGridRow2(GridCol $gridRow2)
{
$this->gridRow2->removeElement($gridRow2);
}
/**
* Get gridRow2
*
* @return \Doctrine\Common\Collections\Collection
*/
public function getGridRow2()
{
return $this->gridRow2;
}
/**
* Add gridRow3
*
* @param GridCol $gridRow3
*
* @return Grid
*/
public function addGridRow3(GridCol $gridRow3)
{
$this->gridRow3[] = $gridRow3;
return $this;
}
/**
* Remove gridRow3
*
* @param GridCol $gridRow3
*/
public function removeGridRow3(GridCol $gridRow3)
{
$this->gridRow3->removeElement($gridRow3);
}
/**
* Get gridRow3
*
* @return \Doctrine\Common\Collections\Collection
*/
public function getGridRow3()
{
return $this->gridRow3;
}
/**
* Add gridRow4
*
* @param GridCol $gridRow4
*
* @return Grid
*/
public function addGridRow4(GridCol $gridRow4)
{
$this->gridRow4[] = $gridRow4;
return $this;
}
/**
* Remove gridRow4
*
* @param GridCol $gridRow4
*/
public function removeGridRow4(GridCol $gridRow4)
{
$this->gridRow4->removeElement($gridRow4);
}
/**
* Get gridRow4
*
* @return \Doctrine\Common\Collections\Collection
*/
public function getGridRow4()
{
return $this->gridRow4;
}
/**
* Add gridRow5
*
* @param GridCol $gridRow5
*
* @return Grid
*/
public function addGridRow5(GridCol $gridRow5)
{
$this->gridRow5[] = $gridRow5;
return $this;
}
/**
* Remove gridRow5
*
* @param GridCol $gridRow5
*/
public function removeGridRow5(GridCol $gridRow5)
{
$this->gridRow5->removeElement($gridRow5);
}
/**
* Get gridRow5
*
* @return \Doctrine\Common\Collections\Collection
*/
public function getGridRow5()
{
return $this->gridRow5;
}
/**
* Add gridRow6
*
* @param GridCol $gridRow6
*
* @return Grid
*/
public function addGridRow6(GridCol $gridRow6)
{
$this->gridRow6[] = $gridRow6;
return $this;
}
/**
* Remove gridRow6
*
* @param GridCol $gridRow6
*/
public function removeGridRow6(GridCol $gridRow6)
{
$this->gridRow6->removeElement($gridRow6);
}
/**
* Get gridRow6
*
* @return \Doctrine\Common\Collections\Collection
*/
public function getGridRow6()
{
return $this->gridRow6;
}
/**
* Add gridRow7
*
* @param GridCol $gridRow7
*
* @return Grid
*/
public function addGridRow7(GridCol $gridRow7)
{
$this->gridRow7[] = $gridRow7;
return $this;
}
/**
* Remove gridRow7
*
* @param GridCol $gridRow7
*/
public function removeGridRow7(GridCol $gridRow7)
{
$this->gridRow7->removeElement($gridRow7);
}
/**
* Get gridRow7
*
* @return \Doctrine\Common\Collections\Collection
*/
public function getGridRow7()
{
return $this->gridRow7;
}
/**
* Add gridRow8
*
* @param GridCol $gridRow8
*
* @return Grid
*/
public function addGridRow8(GridCol $gridRow8)
{
$this->gridRow8[] = $gridRow8;
return $this;
}
/**
* Remove gridRow8
*
* @param GridCol $gridRow8
*/
public function removeGridRow8(GridCol $gridRow8)
{
$this->gridRow8->removeElement($gridRow8);
}
/**
* Get gridRow8
*
* @return \Doctrine\Common\Collections\Collection
*/
public function getGridRow8()
{
return $this->gridRow8;
}
/**
* Add gridRow9
*
* @param GridCol $gridRow9
*
* @return Grid
*/
public function addGridRow9(GridCol $gridRow9)
{
$this->gridRow9[] = $gridRow9;
return $this;
}
/**
* Remove gridRow9
*
* @param GridCol $gridRow9
*/
public function removeGridRow9(GridCol $gridRow9)
{
$this->gridRow9->removeElement($gridRow9);
}
/**
* Get gridRow9
*
* @return \Doctrine\Common\Collections\Collection
*/
public function getGridRow9()
{
return $this->gridRow9;
}
/**
* Add gridRow10
*
* @param GridCol $gridRow10
*
* @return Grid
*/
public function addGridRow10(GridCol $gridRow10)
{
$this->gridRow10[] = $gridRow10;
return $this;
}
/**
* Remove gridRow10
*
* @param GridCol $gridRow10
*/
public function removeGridRow10(GridCol $gridRow10)
{
$this->gridRow10->removeElement($gridRow10);
}
/**
* Get gridRow10
*
* @return \Doctrine\Common\Collections\Collection
*/
public function getGridRow10()
{
return $this->gridRow10;
}
/**
* Add gridRow11
*
* @param GridCol $gridRow11
*
* @return Grid
*/
public function addGridRow11(GridCol $gridRow11)
{
$this->gridRow11[] = $gridRow11;
return $this;
}
/**
* Remove gridRow11
*
* @param GridCol $gridRow11
*/
public function removeGridRow11(GridCol $gridRow11)
{
$this->gridRow11->removeElement($gridRow11);
}
/**
* Get gridRow11
*
* @return \Doctrine\Common\Collections\Collection
*/
public function getGridRow11()
{
return $this->gridRow11;
}
/**
* Add gridRow12
*
* @param GridCol $gridRow12
*
* @return Grid
*/
public function addGridRow12(GridCol $gridRow12)
{
$this->gridRow12[] = $gridRow12;
return $this;
}
/**
* Remove gridRow12
*
* @param GridCol $gridRow12
*/
public function removeGridRow12(GridCol $gridRow12)
{
$this->gridRow12->removeElement($gridRow12);
}
/**
* Get gridRow12
*
* @return \Doctrine\Common\Collections\Collection
*/
public function getGridRow12()
{
return $this->gridRow12;
}
/**
* Add gridRow13
*
* @param GridCol $gridRow13
*
* @return Grid
*/
public function addGridRow13(GridCol $gridRow13)
{
$this->gridRow13[] = $gridRow13;
return $this;
}
/**
* Remove gridRow13
*
* @param GridCol $gridRow13
*/
public function removeGridRow13(GridCol $gridRow13)
{
$this->gridRow13->removeElement($gridRow13);
}
/**
* Get gridRow13
*
* @return \Doctrine\Common\Collections\Collection
*/
public function getGridRow13()
{
return $this->gridRow13;
}
/**
* Add gridRow14
*
* @param GridCol $gridRow14
*
* @return Grid
*/
public function addGridRow14(GridCol $gridRow14)
{
$this->gridRow14[] = $gridRow14;
return $this;
}
/**
* Remove gridRow14
*
* @param GridCol $gridRow14
*/
public function removeGridRow14(GridCol $gridRow14)
{
$this->gridRow14->removeElement($gridRow14);
}
/**
* Get gridRow14
*
* @return \Doctrine\Common\Collections\Collection
*/
public function getGridRow14()
{
return $this->gridRow14;
}
/**
* Add gridRow15
*
* @param GridCol $gridRow15
*
* @return Grid
*/
public function addGridRow15(GridCol $gridRow15)
{
$this->gridRow15[] = $gridRow15;
return $this;
}
/**
* Remove gridRow15
*
* @param GridCol $gridRow15
*/
public function removeGridRow15(GridCol $gridRow15)
{
$this->gridRow15->removeElement($gridRow15);
}
/**
* Get gridRow15
*
* @return \Doctrine\Common\Collections\Collection
*/
public function getGridRow15()
{
return $this->gridRow15;
return $this->id;
}
/**
@@ -742,4 +78,38 @@ class Grid
{
return $this->playedGame;
}
/**
* Add gridRow
*
* @param GridCol $gridRow
*
* @return Grid
*/
public function addGridRow(GridCol $gridRow)
{
$this->gridRow[] = $gridRow;
return $this;
}
/**
* Remove gridRow
*
* @param GridCol $gridRow
*/
public function removeGridRow(GridCol $gridRow)
{
$this->gridRow->removeElement($gridRow);
}
/**
* Get gridRow
*
* @return \Doctrine\Common\Collections\Collection
*/
public function getGridRow()
{
return $this->gridRow;
}
}

View File

@@ -22,701 +22,37 @@ class Grid
*/
private $id;
/**
* @var GridCol
*
* @ORM\OneToMany(targetEntity="Mine\SeekerBundle\Entity\GridCol", mappedBy="gridRow")
*/
private $gridRow0;
/**
* @var GridCol
*
* @ORM\OneToMany(targetEntity="Mine\SeekerBundle\Entity\GridCol", mappedBy="gridRow")
*/
private $gridRow1;
/**
* @var GridCol
*
* @ORM\OneToMany(targetEntity="Mine\SeekerBundle\Entity\GridCol", mappedBy="gridRow")
*/
private $gridRow2;
/**
* @var GridCol
*
* @ORM\OneToMany(targetEntity="Mine\SeekerBundle\Entity\GridCol", mappedBy="gridRow")
*/
private $gridRow3;
/**
* @var GridCol
*
* @ORM\OneToMany(targetEntity="Mine\SeekerBundle\Entity\GridCol", mappedBy="gridRow")
*/
private $gridRow4;
/**
* @var GridCol
*
* @ORM\OneToMany(targetEntity="Mine\SeekerBundle\Entity\GridCol", mappedBy="gridRow")
*/
private $gridRow5;
/**
* @var GridCol
*
* @ORM\OneToMany(targetEntity="Mine\SeekerBundle\Entity\GridCol", mappedBy="gridRow")
*/
private $gridRow6;
/**
* @var GridCol
*
* @ORM\OneToMany(targetEntity="Mine\SeekerBundle\Entity\GridCol", mappedBy="gridRow")
*/
private $gridRow7;
/**
* @var GridCol
*
* @ORM\OneToMany(targetEntity="Mine\SeekerBundle\Entity\GridCol", mappedBy="gridRow")
*/
private $gridRow8;
/**
* @var GridCol
*
* @ORM\OneToMany(targetEntity="Mine\SeekerBundle\Entity\GridCol", mappedBy="gridRow")
*/
private $gridRow9;
/**
* @var GridCol
*
* @ORM\OneToMany(targetEntity="Mine\SeekerBundle\Entity\GridCol", mappedBy="gridRow")
*/
private $gridRow10;
/**
* @var GridCol
*
* @ORM\OneToMany(targetEntity="Mine\SeekerBundle\Entity\GridCol", mappedBy="gridRow")
*/
private $gridRow11;
/**
* @var GridCol
*
* @ORM\OneToMany(targetEntity="Mine\SeekerBundle\Entity\GridCol", mappedBy="gridRow")
*/
private $gridRow12;
/**
* @var GridCol
*
* @ORM\OneToMany(targetEntity="Mine\SeekerBundle\Entity\GridCol", mappedBy="gridRow")
*/
private $gridRow13;
/**
* @var GridCol
*
* @ORM\OneToMany(targetEntity="Mine\SeekerBundle\Entity\GridCol", mappedBy="gridRow")
*/
private $gridRow14;
/**
* @var GridCol
*
* @ORM\OneToMany(targetEntity="Mine\SeekerBundle\Entity\GridCol", mappedBy="gridRow")
*/
private $gridRow15;
/**
* @var PlayedGame
*
* @ORM\OneToOne(targetEntity="Mine\SeekerBundle\Entity\PlayedGame", inversedBy="grid")
* @ORM\JoinColumn(name="played_game", referencedColumnName="id")
* @ORM\OneToOne(targetEntity="Mine\SeekerBundle\Entity\PlayedGame", inversedBy="grid", cascade={"persist"})
*/
private $playedGame;
/**
* Get id
* @var GridCol
*
* @return int
* @ORM\OneToMany(targetEntity="Mine\SeekerBundle\Entity\GridRow", mappedBy="grid", cascade={"persist"})
* @ORM\JoinColumn(name="grid_row", referencedColumnName="id", onDelete="CASCADE")
*/
public function getId()
{
return $this->id;
}
private $gridRow;
/**
* Constructor
*/
public function __construct()
{
$this->gridRow0 = new ArrayCollection();
$this->gridRow1 = new ArrayCollection();
$this->gridRow2 = new ArrayCollection();
$this->gridRow3 = new ArrayCollection();
$this->gridRow4 = new ArrayCollection();
$this->gridRow5 = new ArrayCollection();
$this->gridRow6 = new ArrayCollection();
$this->gridRow7 = new ArrayCollection();
$this->gridRow8 = new ArrayCollection();
$this->gridRow9 = new ArrayCollection();
$this->gridRow10 = new ArrayCollection();
$this->gridRow11 = new ArrayCollection();
$this->gridRow12 = new ArrayCollection();
$this->gridRow13 = new ArrayCollection();
$this->gridRow14 = new ArrayCollection();
$this->gridRow15 = new ArrayCollection();
$this->gridRow = new ArrayCollection();
}
/**
* Add gridRow0
* Get id
*
* @param GridCol $gridRow0
*
* @return Grid
* @return integer
*/
public function addGridRow0(GridCol $gridRow0)
public function getId()
{
$this->gridRow0[] = $gridRow0;
return $this;
}
/**
* Remove gridRow0
*
* @param GridCol $gridRow0
*/
public function removeGridRow0(GridCol $gridRow0)
{
$this->gridRow0->removeElement($gridRow0);
}
/**
* Get gridRow0
*
* @return \Doctrine\Common\Collections\Collection
*/
public function getGridRow0()
{
return $this->gridRow0;
}
/**
* Add gridRow1
*
* @param GridCol $gridRow1
*
* @return Grid
*/
public function addGridRow1(GridCol $gridRow1)
{
$this->gridRow1[] = $gridRow1;
return $this;
}
/**
* Remove gridRow1
*
* @param GridCol $gridRow1
*/
public function removeGridRow1(GridCol $gridRow1)
{
$this->gridRow1->removeElement($gridRow1);
}
/**
* Get gridRow1
*
* @return \Doctrine\Common\Collections\Collection
*/
public function getGridRow1()
{
return $this->gridRow1;
}
/**
* Add gridRow2
*
* @param GridCol $gridRow2
*
* @return Grid
*/
public function addGridRow2(GridCol $gridRow2)
{
$this->gridRow2[] = $gridRow2;
return $this;
}
/**
* Remove gridRow2
*
* @param GridCol $gridRow2
*/
public function removeGridRow2(GridCol $gridRow2)
{
$this->gridRow2->removeElement($gridRow2);
}
/**
* Get gridRow2
*
* @return \Doctrine\Common\Collections\Collection
*/
public function getGridRow2()
{
return $this->gridRow2;
}
/**
* Add gridRow3
*
* @param GridCol $gridRow3
*
* @return Grid
*/
public function addGridRow3(GridCol $gridRow3)
{
$this->gridRow3[] = $gridRow3;
return $this;
}
/**
* Remove gridRow3
*
* @param GridCol $gridRow3
*/
public function removeGridRow3(GridCol $gridRow3)
{
$this->gridRow3->removeElement($gridRow3);
}
/**
* Get gridRow3
*
* @return \Doctrine\Common\Collections\Collection
*/
public function getGridRow3()
{
return $this->gridRow3;
}
/**
* Add gridRow4
*
* @param GridCol $gridRow4
*
* @return Grid
*/
public function addGridRow4(GridCol $gridRow4)
{
$this->gridRow4[] = $gridRow4;
return $this;
}
/**
* Remove gridRow4
*
* @param GridCol $gridRow4
*/
public function removeGridRow4(GridCol $gridRow4)
{
$this->gridRow4->removeElement($gridRow4);
}
/**
* Get gridRow4
*
* @return \Doctrine\Common\Collections\Collection
*/
public function getGridRow4()
{
return $this->gridRow4;
}
/**
* Add gridRow5
*
* @param GridCol $gridRow5
*
* @return Grid
*/
public function addGridRow5(GridCol $gridRow5)
{
$this->gridRow5[] = $gridRow5;
return $this;
}
/**
* Remove gridRow5
*
* @param GridCol $gridRow5
*/
public function removeGridRow5(GridCol $gridRow5)
{
$this->gridRow5->removeElement($gridRow5);
}
/**
* Get gridRow5
*
* @return \Doctrine\Common\Collections\Collection
*/
public function getGridRow5()
{
return $this->gridRow5;
}
/**
* Add gridRow6
*
* @param GridCol $gridRow6
*
* @return Grid
*/
public function addGridRow6(GridCol $gridRow6)
{
$this->gridRow6[] = $gridRow6;
return $this;
}
/**
* Remove gridRow6
*
* @param GridCol $gridRow6
*/
public function removeGridRow6(GridCol $gridRow6)
{
$this->gridRow6->removeElement($gridRow6);
}
/**
* Get gridRow6
*
* @return \Doctrine\Common\Collections\Collection
*/
public function getGridRow6()
{
return $this->gridRow6;
}
/**
* Add gridRow7
*
* @param GridCol $gridRow7
*
* @return Grid
*/
public function addGridRow7(GridCol $gridRow7)
{
$this->gridRow7[] = $gridRow7;
return $this;
}
/**
* Remove gridRow7
*
* @param GridCol $gridRow7
*/
public function removeGridRow7(GridCol $gridRow7)
{
$this->gridRow7->removeElement($gridRow7);
}
/**
* Get gridRow7
*
* @return \Doctrine\Common\Collections\Collection
*/
public function getGridRow7()
{
return $this->gridRow7;
}
/**
* Add gridRow8
*
* @param GridCol $gridRow8
*
* @return Grid
*/
public function addGridRow8(GridCol $gridRow8)
{
$this->gridRow8[] = $gridRow8;
return $this;
}
/**
* Remove gridRow8
*
* @param GridCol $gridRow8
*/
public function removeGridRow8(GridCol $gridRow8)
{
$this->gridRow8->removeElement($gridRow8);
}
/**
* Get gridRow8
*
* @return \Doctrine\Common\Collections\Collection
*/
public function getGridRow8()
{
return $this->gridRow8;
}
/**
* Add gridRow9
*
* @param GridCol $gridRow9
*
* @return Grid
*/
public function addGridRow9(GridCol $gridRow9)
{
$this->gridRow9[] = $gridRow9;
return $this;
}
/**
* Remove gridRow9
*
* @param GridCol $gridRow9
*/
public function removeGridRow9(GridCol $gridRow9)
{
$this->gridRow9->removeElement($gridRow9);
}
/**
* Get gridRow9
*
* @return \Doctrine\Common\Collections\Collection
*/
public function getGridRow9()
{
return $this->gridRow9;
}
/**
* Add gridRow10
*
* @param GridCol $gridRow10
*
* @return Grid
*/
public function addGridRow10(GridCol $gridRow10)
{
$this->gridRow10[] = $gridRow10;
return $this;
}
/**
* Remove gridRow10
*
* @param GridCol $gridRow10
*/
public function removeGridRow10(GridCol $gridRow10)
{
$this->gridRow10->removeElement($gridRow10);
}
/**
* Get gridRow10
*
* @return \Doctrine\Common\Collections\Collection
*/
public function getGridRow10()
{
return $this->gridRow10;
}
/**
* Add gridRow11
*
* @param GridCol $gridRow11
*
* @return Grid
*/
public function addGridRow11(GridCol $gridRow11)
{
$this->gridRow11[] = $gridRow11;
return $this;
}
/**
* Remove gridRow11
*
* @param GridCol $gridRow11
*/
public function removeGridRow11(GridCol $gridRow11)
{
$this->gridRow11->removeElement($gridRow11);
}
/**
* Get gridRow11
*
* @return \Doctrine\Common\Collections\Collection
*/
public function getGridRow11()
{
return $this->gridRow11;
}
/**
* Add gridRow12
*
* @param GridCol $gridRow12
*
* @return Grid
*/
public function addGridRow12(GridCol $gridRow12)
{
$this->gridRow12[] = $gridRow12;
return $this;
}
/**
* Remove gridRow12
*
* @param GridCol $gridRow12
*/
public function removeGridRow12(GridCol $gridRow12)
{
$this->gridRow12->removeElement($gridRow12);
}
/**
* Get gridRow12
*
* @return \Doctrine\Common\Collections\Collection
*/
public function getGridRow12()
{
return $this->gridRow12;
}
/**
* Add gridRow13
*
* @param GridCol $gridRow13
*
* @return Grid
*/
public function addGridRow13(GridCol $gridRow13)
{
$this->gridRow13[] = $gridRow13;
return $this;
}
/**
* Remove gridRow13
*
* @param GridCol $gridRow13
*/
public function removeGridRow13(GridCol $gridRow13)
{
$this->gridRow13->removeElement($gridRow13);
}
/**
* Get gridRow13
*
* @return \Doctrine\Common\Collections\Collection
*/
public function getGridRow13()
{
return $this->gridRow13;
}
/**
* Add gridRow14
*
* @param GridCol $gridRow14
*
* @return Grid
*/
public function addGridRow14(GridCol $gridRow14)
{
$this->gridRow14[] = $gridRow14;
return $this;
}
/**
* Remove gridRow14
*
* @param GridCol $gridRow14
*/
public function removeGridRow14(GridCol $gridRow14)
{
$this->gridRow14->removeElement($gridRow14);
}
/**
* Get gridRow14
*
* @return \Doctrine\Common\Collections\Collection
*/
public function getGridRow14()
{
return $this->gridRow14;
}
/**
* Add gridRow15
*
* @param GridCol $gridRow15
*
* @return Grid
*/
public function addGridRow15(GridCol $gridRow15)
{
$this->gridRow15[] = $gridRow15;
return $this;
}
/**
* Remove gridRow15
*
* @param GridCol $gridRow15
*/
public function removeGridRow15(GridCol $gridRow15)
{
$this->gridRow15->removeElement($gridRow15);
}
/**
* Get gridRow15
*
* @return \Doctrine\Common\Collections\Collection
*/
public function getGridRow15()
{
return $this->gridRow15;
return $this->id;
}
/**
@@ -742,4 +78,38 @@ class Grid
{
return $this->playedGame;
}
/**
* Add gridRow
*
* @param GridCol $gridRow
*
* @return Grid
*/
public function addGridRow(GridCol $gridRow)
{
$this->gridRow[] = $gridRow;
return $this;
}
/**
* Remove gridRow
*
* @param GridCol $gridRow
*/
public function removeGridRow(GridCol $gridRow)
{
$this->gridRow->removeElement($gridRow);
}
/**
* Get gridRow
*
* @return \Doctrine\Common\Collections\Collection
*/
public function getGridRow()
{
return $this->gridRow;
}
}

View File

@@ -5,10 +5,10 @@ namespace Mine\SeekerBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* GridRow
* GridCol
*
* @ORM\Table(name="grid_row")
* @ORM\Entity(repositoryClass="Mine\SeekerBundle\Repository\GridRowRepository")
* @ORM\Table(name="grid_col")
* @ORM\Entity(repositoryClass="Mine\SeekerBundle\Repository\GridColRepository")
*/
class GridCol
{
@@ -22,129 +22,24 @@ class GridCol
private $id;
/**
* @var int
* @var string
*
* @ORM\Column(name="col0", type="integer", nullable=true)
* @ORM\Column(name="col", type="string", length=1, nullable=false)
*/
private $col0;
private $col;
/**
* @var int
* @var GridRow
*
* @ORM\Column(name="col1", type="integer", nullable=true)
* @ORM\ManyToOne(targetEntity="Mine\SeekerBundle\Entity\GridRow", inversedBy="gridCol", cascade={"persist"})
* @ORM\JoinColumn(name="grid_col", referencedColumnName="id", onDelete="CASCADE")
*/
private $col1;
/**
* @var int
*
* @ORM\Column(name="col2", type="integer", nullable=true)
*/
private $col2;
/**
* @var int
*
* @ORM\Column(name="col3", type="integer", nullable=true)
*/
private $col3;
/**
* @var int
*
* @ORM\Column(name="col4", type="integer", nullable=true)
*/
private $col4;
/**
* @var int
*
* @ORM\Column(name="col5", type="integer", nullable=true)
*/
private $col5;
/**
* @var int
*
* @ORM\Column(name="col6", type="integer", nullable=true)
*/
private $col6;
/**
* @var int
*
* @ORM\Column(name="col7", type="integer", nullable=true)
*/
private $col7;
/**
* @var int
*
* @ORM\Column(name="col8", type="integer", nullable=true)
*/
private $col8;
/**
* @var int
*
* @ORM\Column(name="col9", type="integer", nullable=true)
*/
private $col9;
/**
* @var int
*
* @ORM\Column(name="col10", type="integer", nullable=true)
*/
private $col10;
/**
* @var int
*
* @ORM\Column(name="col11", type="integer", nullable=true)
*/
private $col11;
/**
* @var int
*
* @ORM\Column(name="col12", type="integer", nullable=true)
*/
private $col12;
/**
* @var int
*
* @ORM\Column(name="col13", type="integer", nullable=true)
*/
private $col13;
/**
* @var int
*
* @ORM\Column(name="col14", type="integer", nullable=true)
*/
private $col14;
/**
* @var int
*
* @ORM\Column(name="col15", type="integer", nullable=true)
*/
private $col15;
/**
* @var Grid
*
* @ORM\ManyToOne(targetEntity="Mine\SeekerBundle\Entity\Grid", inversedBy="gridRow")
*/
private $gridRow;
private $gridCol;
/**
* Get id
*
* @return int
* @return integer
*/
public function getId()
{
@@ -152,410 +47,50 @@ class GridCol
}
/**
* Set col0
* Set col
*
* @param integer $col0
* @param integer $col
*
* @return GridCol
*/
public function setCol0($col0)
public function setCol($col)
{
$this->col0 = $col0;
$this->col = $col;
return $this;
}
/**
* Get col0
* Get col
*
* @return integer
*/
public function getCol0()
public function getCol()
{
return $this->col0;
return $this->col;
}
/**
* Set col1
* Set gridCol
*
* @param integer $col1
* @param GridRow $gridCol
*
* @return GridCol
*/
public function setCol1($col1)
public function setGridCol(GridRow $gridCol = null)
{
$this->col1 = $col1;
$this->gridCol = $gridCol;
return $this;
}
/**
* Get col1
* Get gridCol
*
* @return integer
* @return GridRow
*/
public function getCol1()
public function getGridCol()
{
return $this->col1;
}
/**
* Set col2
*
* @param integer $col2
*
* @return GridCol
*/
public function setCol2($col2)
{
$this->col2 = $col2;
return $this;
}
/**
* Get col2
*
* @return integer
*/
public function getCol2()
{
return $this->col2;
}
/**
* Set col3
*
* @param integer $col3
*
* @return GridCol
*/
public function setCol3($col3)
{
$this->col3 = $col3;
return $this;
}
/**
* Get col3
*
* @return integer
*/
public function getCol3()
{
return $this->col3;
}
/**
* Set col4
*
* @param integer $col4
*
* @return GridCol
*/
public function setCol4($col4)
{
$this->col4 = $col4;
return $this;
}
/**
* Get col4
*
* @return integer
*/
public function getCol4()
{
return $this->col4;
}
/**
* Set col5
*
* @param integer $col5
*
* @return GridCol
*/
public function setCol5($col5)
{
$this->col5 = $col5;
return $this;
}
/**
* Get col5
*
* @return integer
*/
public function getCol5()
{
return $this->col5;
}
/**
* Set col6
*
* @param integer $col6
*
* @return GridCol
*/
public function setCol6($col6)
{
$this->col6 = $col6;
return $this;
}
/**
* Get col6
*
* @return integer
*/
public function getCol6()
{
return $this->col6;
}
/**
* Set col7
*
* @param integer $col7
*
* @return GridCol
*/
public function setCol7($col7)
{
$this->col7 = $col7;
return $this;
}
/**
* Get col7
*
* @return integer
*/
public function getCol7()
{
return $this->col7;
}
/**
* Set col8
*
* @param integer $col8
*
* @return GridCol
*/
public function setCol8($col8)
{
$this->col8 = $col8;
return $this;
}
/**
* Get col8
*
* @return integer
*/
public function getCol8()
{
return $this->col8;
}
/**
* Set col9
*
* @param integer $col9
*
* @return GridCol
*/
public function setCol9($col9)
{
$this->col9 = $col9;
return $this;
}
/**
* Get col9
*
* @return integer
*/
public function getCol9()
{
return $this->col9;
}
/**
* Set col10
*
* @param integer $col10
*
* @return GridCol
*/
public function setCol10($col10)
{
$this->col10 = $col10;
return $this;
}
/**
* Get col10
*
* @return integer
*/
public function getCol10()
{
return $this->col10;
}
/**
* Set col11
*
* @param integer $col11
*
* @return GridCol
*/
public function setCol11($col11)
{
$this->col11 = $col11;
return $this;
}
/**
* Get col11
*
* @return integer
*/
public function getCol11()
{
return $this->col11;
}
/**
* Set col12
*
* @param integer $col12
*
* @return GridCol
*/
public function setCol12($col12)
{
$this->col12 = $col12;
return $this;
}
/**
* Get col12
*
* @return integer
*/
public function getCol12()
{
return $this->col12;
}
/**
* Set col13
*
* @param integer $col13
*
* @return GridCol
*/
public function setCol13($col13)
{
$this->col13 = $col13;
return $this;
}
/**
* Get col13
*
* @return integer
*/
public function getCol13()
{
return $this->col13;
}
/**
* Set col14
*
* @param integer $col14
*
* @return GridCol
*/
public function setCol14($col14)
{
$this->col14 = $col14;
return $this;
}
/**
* Get col14
*
* @return integer
*/
public function getCol14()
{
return $this->col14;
}
/**
* Set col15
*
* @param integer $col15
*
* @return GridCol
*/
public function setCol15($col15)
{
$this->col15 = $col15;
return $this;
}
/**
* Get col15
*
* @return integer
*/
public function getCol15()
{
return $this->col15;
}
/**
* Set gridRow
*
* @param Grid $gridRow
*
* @return GridCol
*/
public function setGridRow(Grid $gridRow = null)
{
$this->gridRow = $gridRow;
return $this;
}
/**
* Get gridRow
*
* @return Grid
*/
public function getGridRow()
{
return $this->gridRow;
return $this->gridCol;
}
}

View File

@@ -5,10 +5,10 @@ namespace Mine\SeekerBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* GridRow
* GridCol
*
* @ORM\Table(name="grid_row")
* @ORM\Entity(repositoryClass="Mine\SeekerBundle\Repository\GridRowRepository")
* @ORM\Table(name="grid_col")
* @ORM\Entity(repositoryClass="Mine\SeekerBundle\Repository\GridColRepository")
*/
class GridCol
{
@@ -22,129 +22,24 @@ class GridCol
private $id;
/**
* @var int
* @var string
*
* @ORM\Column(name="col0", type="integer", nullable=true)
* @ORM\Column(name="col", type="string", length=1, nullable=false)
*/
private $col0;
private $col;
/**
* @var int
* @var GridRow
*
* @ORM\Column(name="col1", type="integer", nullable=true)
* @ORM\ManyToOne(targetEntity="Mine\SeekerBundle\Entity\GridRow", inversedBy="gridCol", cascade={"persist"})
* @ORM\JoinColumn(name="grid_col", referencedColumnName="id", onDelete="CASCADE")
*/
private $col1;
/**
* @var int
*
* @ORM\Column(name="col2", type="integer", nullable=true)
*/
private $col2;
/**
* @var int
*
* @ORM\Column(name="col3", type="integer", nullable=true)
*/
private $col3;
/**
* @var int
*
* @ORM\Column(name="col4", type="integer", nullable=true)
*/
private $col4;
/**
* @var int
*
* @ORM\Column(name="col5", type="integer", nullable=true)
*/
private $col5;
/**
* @var int
*
* @ORM\Column(name="col6", type="integer", nullable=true)
*/
private $col6;
/**
* @var int
*
* @ORM\Column(name="col7", type="integer", nullable=true)
*/
private $col7;
/**
* @var int
*
* @ORM\Column(name="col8", type="integer", nullable=true)
*/
private $col8;
/**
* @var int
*
* @ORM\Column(name="col9", type="integer", nullable=true)
*/
private $col9;
/**
* @var int
*
* @ORM\Column(name="col10", type="integer", nullable=true)
*/
private $col10;
/**
* @var int
*
* @ORM\Column(name="col11", type="integer", nullable=true)
*/
private $col11;
/**
* @var int
*
* @ORM\Column(name="col12", type="integer", nullable=true)
*/
private $col12;
/**
* @var int
*
* @ORM\Column(name="col13", type="integer", nullable=true)
*/
private $col13;
/**
* @var int
*
* @ORM\Column(name="col14", type="integer", nullable=true)
*/
private $col14;
/**
* @var int
*
* @ORM\Column(name="col15", type="integer", nullable=true)
*/
private $col15;
/**
* @var Grid
*
* @ORM\ManyToOne(targetEntity="Mine\SeekerBundle\Entity\Grid", inversedBy="gridRow")
*/
private $gridRow;
private $gridCol;
/**
* Get id
*
* @return int
* @return integer
*/
public function getId()
{
@@ -152,410 +47,50 @@ class GridCol
}
/**
* Set col0
* Set col
*
* @param integer $col0
* @param integer $col
*
* @return GridCol
*/
public function setCol0($col0)
public function setCol($col)
{
$this->col0 = $col0;
$this->col = $col;
return $this;
}
/**
* Get col0
* Get col
*
* @return integer
*/
public function getCol0()
public function getCol()
{
return $this->col0;
return $this->col;
}
/**
* Set col1
* Set gridCol
*
* @param integer $col1
* @param GridRow $gridCol
*
* @return GridCol
*/
public function setCol1($col1)
public function setGridCol(GridRow $gridCol = null)
{
$this->col1 = $col1;
$this->gridCol = $gridCol;
return $this;
}
/**
* Get col1
* Get gridCol
*
* @return integer
* @return GridRow
*/
public function getCol1()
public function getGridCol()
{
return $this->col1;
}
/**
* Set col2
*
* @param integer $col2
*
* @return GridCol
*/
public function setCol2($col2)
{
$this->col2 = $col2;
return $this;
}
/**
* Get col2
*
* @return integer
*/
public function getCol2()
{
return $this->col2;
}
/**
* Set col3
*
* @param integer $col3
*
* @return GridCol
*/
public function setCol3($col3)
{
$this->col3 = $col3;
return $this;
}
/**
* Get col3
*
* @return integer
*/
public function getCol3()
{
return $this->col3;
}
/**
* Set col4
*
* @param integer $col4
*
* @return GridCol
*/
public function setCol4($col4)
{
$this->col4 = $col4;
return $this;
}
/**
* Get col4
*
* @return integer
*/
public function getCol4()
{
return $this->col4;
}
/**
* Set col5
*
* @param integer $col5
*
* @return GridCol
*/
public function setCol5($col5)
{
$this->col5 = $col5;
return $this;
}
/**
* Get col5
*
* @return integer
*/
public function getCol5()
{
return $this->col5;
}
/**
* Set col6
*
* @param integer $col6
*
* @return GridCol
*/
public function setCol6($col6)
{
$this->col6 = $col6;
return $this;
}
/**
* Get col6
*
* @return integer
*/
public function getCol6()
{
return $this->col6;
}
/**
* Set col7
*
* @param integer $col7
*
* @return GridCol
*/
public function setCol7($col7)
{
$this->col7 = $col7;
return $this;
}
/**
* Get col7
*
* @return integer
*/
public function getCol7()
{
return $this->col7;
}
/**
* Set col8
*
* @param integer $col8
*
* @return GridCol
*/
public function setCol8($col8)
{
$this->col8 = $col8;
return $this;
}
/**
* Get col8
*
* @return integer
*/
public function getCol8()
{
return $this->col8;
}
/**
* Set col9
*
* @param integer $col9
*
* @return GridCol
*/
public function setCol9($col9)
{
$this->col9 = $col9;
return $this;
}
/**
* Get col9
*
* @return integer
*/
public function getCol9()
{
return $this->col9;
}
/**
* Set col10
*
* @param integer $col10
*
* @return GridCol
*/
public function setCol10($col10)
{
$this->col10 = $col10;
return $this;
}
/**
* Get col10
*
* @return integer
*/
public function getCol10()
{
return $this->col10;
}
/**
* Set col11
*
* @param integer $col11
*
* @return GridCol
*/
public function setCol11($col11)
{
$this->col11 = $col11;
return $this;
}
/**
* Get col11
*
* @return integer
*/
public function getCol11()
{
return $this->col11;
}
/**
* Set col12
*
* @param integer $col12
*
* @return GridCol
*/
public function setCol12($col12)
{
$this->col12 = $col12;
return $this;
}
/**
* Get col12
*
* @return integer
*/
public function getCol12()
{
return $this->col12;
}
/**
* Set col13
*
* @param integer $col13
*
* @return GridCol
*/
public function setCol13($col13)
{
$this->col13 = $col13;
return $this;
}
/**
* Get col13
*
* @return integer
*/
public function getCol13()
{
return $this->col13;
}
/**
* Set col14
*
* @param integer $col14
*
* @return GridCol
*/
public function setCol14($col14)
{
$this->col14 = $col14;
return $this;
}
/**
* Get col14
*
* @return integer
*/
public function getCol14()
{
return $this->col14;
}
/**
* Set col15
*
* @param integer $col15
*
* @return GridCol
*/
public function setCol15($col15)
{
$this->col15 = $col15;
return $this;
}
/**
* Get col15
*
* @return integer
*/
public function getCol15()
{
return $this->col15;
}
/**
* Set gridRow
*
* @param Grid $gridRow
*
* @return GridCol
*/
public function setGridRow(Grid $gridRow = null)
{
$this->gridRow = $gridRow;
return $this;
}
/**
* Get gridRow
*
* @return Grid
*/
public function getGridRow()
{
return $this->gridRow;
return $this->gridCol;
}
}

View File

@@ -0,0 +1,116 @@
<?php
namespace Mine\SeekerBundle\Entity;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\ORM\Mapping as ORM;
/**
* GridRow
*
* @ORM\Table(name="grid_row")
* @ORM\Entity(repositoryClass="Mine\SeekerBundle\Repository\GridRowRepository")
*/
class GridRow
{
/**
* @var int
*
* @ORM\Column(name="id", type="integer")
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
*/
private $id;
/**
* @var Grid
*
* @ORM\ManyToOne(targetEntity="Mine\SeekerBundle\Entity\Grid", inversedBy="gridRow", cascade={"persist"})
* @ORM\JoinColumn(name="grid", referencedColumnName="id", onDelete="CASCADE")
*/
private $grid;
/**
* @var GridCol
*
* @ORM\OneToMany(targetEntity="Mine\SeekerBundle\Entity\GridCol", mappedBy="gridCol", cascade={"persist"})
* @ORM\JoinColumn(name="grid_row", referencedColumnName="id", onDelete="CASCADE")
*/
private $gridCol;
/**
* Constructor
*/
public function __construct()
{
$this->gridCol = new ArrayCollection();
}
/**
* Get id
*
* @return integer
*/
public function getId()
{
return $this->id;
}
/**
* Add gridCol
*
* @param GridCol $gridCol
*
* @return GridRow
*/
public function addGridCol(GridCol $gridCol)
{
$this->gridCol[] = $gridCol;
return $this;
}
/**
* Remove gridCol
*
* @param GridCol $gridCol
*/
public function removeGridCol(GridCol $gridCol)
{
$this->gridCol->removeElement($gridCol);
}
/**
* Get gridCol
*
* @return \Doctrine\Common\Collections\Collection
*/
public function getGridCol()
{
return $this->gridCol;
}
/**
* Set grid
*
* @param Grid $grid
*
* @return GridRow
*/
public function setGrid(Grid $grid = null)
{
$this->grid = $grid;
return $this;
}
/**
* Get grid
*
* @return Grid
*/
public function getGrid()
{
return $this->grid;
}
}

View File

@@ -0,0 +1,116 @@
<?php
namespace Mine\SeekerBundle\Entity;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\ORM\Mapping as ORM;
/**
* GridRow
*
* @ORM\Table(name="grid_row")
* @ORM\Entity(repositoryClass="Mine\SeekerBundle\Repository\GridRowRepository")
*/
class GridRow
{
/**
* @var int
*
* @ORM\Column(name="id", type="integer")
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
*/
private $id;
/**
* @var Grid
*
* @ORM\ManyToOne(targetEntity="Mine\SeekerBundle\Entity\Grid", inversedBy="gridRow", cascade={"persist"})
* @ORM\JoinColumn(name="grid", referencedColumnName="id", onDelete="CASCADE")
*/
private $grid;
/**
* @var GridCol
*
* @ORM\OneToMany(targetEntity="Mine\SeekerBundle\Entity\GridCol", mappedBy="gridCol", cascade={"persist"})
* @ORM\JoinColumn(name="grid_row", referencedColumnName="id", onDelete="CASCADE")
*/
private $gridCol;
/**
* Constructor
*/
public function __construct()
{
$this->gridCol = new ArrayCollection();
}
/**
* Get id
*
* @return integer
*/
public function getId()
{
return $this->id;
}
/**
* Add gridCol
*
* @param GridCol $gridCol
*
* @return GridRow
*/
public function addGridCol(GridCol $gridCol)
{
$this->gridCol[] = $gridCol;
return $this;
}
/**
* Remove gridCol
*
* @param GridCol $gridCol
*/
public function removeGridCol(GridCol $gridCol)
{
$this->gridCol->removeElement($gridCol);
}
/**
* Get gridCol
*
* @return \Doctrine\Common\Collections\Collection
*/
public function getGridCol()
{
return $this->gridCol;
}
/**
* Set grid
*
* @param Grid $grid
*
* @return GridRow
*/
public function setGrid(Grid $grid = null)
{
$this->grid = $grid;
return $this;
}
/**
* Get grid
*
* @return Grid
*/
public function getGrid()
{
return $this->grid;
}
}

View File

@@ -3,6 +3,7 @@
namespace Mine\SeekerBundle\Entity;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Doctrine\ORM\Mapping as ORM;
use Jotunheimr\UserBundle\Entity\User;
@@ -23,10 +24,17 @@ class PlayedGame
*/
private $id;
/**
* @var string
*
* @ORM\Column(name="game_assoc", type="string", length=50, nullable=false)
*/
private $gameAssoc;
/**
* @var Grid
*
* @ORM\OneToOne(targetEntity="Mine\SeekerBundle\Entity\Grid", mappedBy="playedGame")
* @ORM\OneToOne(targetEntity="Mine\SeekerBundle\Entity\Grid", mappedBy="playedGame", cascade={"persist"})
*/
private $grid;
@@ -94,19 +102,11 @@ class PlayedGame
* @var Step
*
* @ORM\OneToMany(targetEntity="Mine\SeekerBundle\Entity\Step", mappedBy="playedGame")
* @ORM\JoinColumn(name="step", referencedColumnName="id", nullable=true)
*/
private $step;
/**
* Get id
*
* @return int
*/
public function getId()
{
return $this->id;
}
/**
* Constructor
*/
@@ -115,6 +115,16 @@ class PlayedGame
$this->step = new ArrayCollection();
}
/**
* Get id
*
* @return integer
*/
public function getId()
{
return $this->id;
}
/**
* Set redPoints
*
@@ -259,64 +269,6 @@ class PlayedGame
return $this->red;
}
/**
* Set blue
*
* @param User $blue
*
* @return PlayedGame
*/
public function setBlue(User $blue = null)
{
$this->blue = $blue;
return $this;
}
/**
* Get blue
*
* @return User
*/
public function getBlue()
{
return $this->blue;
}
/**
* Add step
*
* @param \Mine\SeekerBundle\Entity\Step $step
*
* @return PlayedGame
*/
public function addStep(\Mine\SeekerBundle\Entity\Step $step)
{
$this->step[] = $step;
return $this;
}
/**
* Remove step
*
* @param \Mine\SeekerBundle\Entity\Step $step
*/
public function removeStep(\Mine\SeekerBundle\Entity\Step $step)
{
$this->step->removeElement($step);
}
/**
* Get step
*
* @return \Doctrine\Common\Collections\Collection
*/
public function getStep()
{
return $this->step;
}
/**
* Set redAnon
*
@@ -341,6 +293,30 @@ class PlayedGame
return $this->redAnon;
}
/**
* Set blue
*
* @param User $blue
*
* @return PlayedGame
*/
public function setBlue(User $blue = null)
{
$this->blue = $blue;
return $this;
}
/**
* Get blue
*
* @return User
*/
public function getBlue()
{
return $this->blue;
}
/**
* Set blueAnon
*
@@ -364,4 +340,62 @@ class PlayedGame
{
return $this->blueAnon;
}
/**
* Add step
*
* @param Step $step
*
* @return PlayedGame
*/
public function addStep(Step $step)
{
$this->step[] = $step;
return $this;
}
/**
* Remove step
*
* @param Step $step
*/
public function removeStep(Step $step)
{
$this->step->removeElement($step);
}
/**
* Get step
*
* @return Collection
*/
public function getStep()
{
return $this->step;
}
/**
* Set gameAssoc
*
* @param string $gameAssoc
*
* @return PlayedGame
*/
public function setGameAssoc($gameAssoc)
{
$this->gameAssoc = $gameAssoc;
return $this;
}
/**
* Get gameAssoc
*
* @return string
*/
public function getGameAssoc()
{
return $this->gameAssoc;
}
}

View File

@@ -3,7 +3,9 @@
namespace Mine\SeekerBundle\Entity;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Doctrine\ORM\Mapping as ORM;
use Jotunheimr\UserBundle\Entity\User;
/**
* PlayedGame
@@ -22,15 +24,22 @@ class PlayedGame
*/
private $id;
/**
* @var string
*
* @ORM\Column(name="game_assoc", type="string", length=50, nullable=false)
*/
private $gameAssoc;
/**
* @var Grid
*
* @ORM\OneToOne(targetEntity="Mine\SeekerBundle\Entity\Grid", mappedBy="playedGame")
* @ORM\OneToOne(targetEntity="Mine\SeekerBundle\Entity\Grid", mappedBy="playedGame", cascade={"persist"})
*/
private $grid;
/**
* @var \Jotunheimr\UserBundle\Entity\User
* @var User
*
* @ORM\ManyToOne(targetEntity="Jotunheimr\UserBundle\Entity\User")
* @ORM\JoinColumn(name="red_id", referencedColumnName="id", nullable=true)
@@ -46,7 +55,7 @@ class PlayedGame
private $redAnon;
/**
* @var \Jotunheimr\UserBundle\Entity\User
* @var User
*
* @ORM\ManyToOne(targetEntity="Jotunheimr\UserBundle\Entity\User")
* @ORM\JoinColumn(name="blue_id", referencedColumnName="id", nullable=true)
@@ -93,19 +102,11 @@ class PlayedGame
* @var Step
*
* @ORM\OneToMany(targetEntity="Mine\SeekerBundle\Entity\Step", mappedBy="playedGame")
* @ORM\JoinColumn(name="step", referencedColumnName="id", nullable=true)
*/
private $step;
/**
* Get id
*
* @return int
*/
public function getId()
{
return $this->id;
}
/**
* Constructor
*/
@@ -114,6 +115,16 @@ class PlayedGame
$this->step = new ArrayCollection();
}
/**
* Get id
*
* @return integer
*/
public function getId()
{
return $this->id;
}
/**
* Set redPoints
*
@@ -213,11 +224,11 @@ class PlayedGame
/**
* Set grid
*
* @param \Mine\SeekerBundle\Entity\Grid $grid
* @param Grid $grid
*
* @return PlayedGame
*/
public function setGrid(\Mine\SeekerBundle\Entity\Grid $grid = null)
public function setGrid(Grid $grid = null)
{
$this->grid = $grid;
@@ -227,7 +238,7 @@ class PlayedGame
/**
* Get grid
*
* @return \Mine\SeekerBundle\Entity\Grid
* @return Grid
*/
public function getGrid()
{
@@ -237,11 +248,11 @@ class PlayedGame
/**
* Set red
*
* @param \Jotunheimr\UserBundle\Entity\User $red
* @param User $red
*
* @return PlayedGame
*/
public function setRed(\Jotunheimr\UserBundle\Entity\User $red = null)
public function setRed(User $red = null)
{
$this->red = $red;
@@ -251,7 +262,7 @@ class PlayedGame
/**
* Get red
*
* @return \Jotunheimr\UserBundle\Entity\User
* @return User
*/
public function getRed()
{
@@ -259,13 +270,37 @@ class PlayedGame
}
/**
* Set blue
* Set redAnon
*
* @param \Jotunheimr\UserBundle\Entity\User $blue
* @param Gamer $redAnon
*
* @return PlayedGame
*/
public function setBlue(\Jotunheimr\UserBundle\Entity\User $blue = null)
public function setRedAnon(Gamer $redAnon = null)
{
$this->redAnon = $redAnon;
return $this;
}
/**
* Get redAnon
*
* @return Gamer
*/
public function getRedAnon()
{
return $this->redAnon;
}
/**
* Set blue
*
* @param User $blue
*
* @return PlayedGame
*/
public function setBlue(User $blue = null)
{
$this->blue = $blue;
@@ -275,7 +310,7 @@ class PlayedGame
/**
* Get blue
*
* @return \Jotunheimr\UserBundle\Entity\User
* @return User
*/
public function getBlue()
{
@@ -283,13 +318,37 @@ class PlayedGame
}
/**
* Add step
* Set blueAnon
*
* @param \Mine\SeekerBundle\Entity\Step $step
* @param Gamer $blueAnon
*
* @return PlayedGame
*/
public function addStep(\Mine\SeekerBundle\Entity\Step $step)
public function setBlueAnon(Gamer $blueAnon = null)
{
$this->blueAnon = $blueAnon;
return $this;
}
/**
* Get blueAnon
*
* @return Gamer
*/
public function getBlueAnon()
{
return $this->blueAnon;
}
/**
* Add step
*
* @param Step $step
*
* @return PlayedGame
*/
public function addStep(Step $step)
{
$this->step[] = $step;
@@ -299,9 +358,9 @@ class PlayedGame
/**
* Remove step
*
* @param \Mine\SeekerBundle\Entity\Step $step
* @param Step $step
*/
public function removeStep(\Mine\SeekerBundle\Entity\Step $step)
public function removeStep(Step $step)
{
$this->step->removeElement($step);
}
@@ -309,10 +368,34 @@ class PlayedGame
/**
* Get step
*
* @return \Doctrine\Common\Collections\Collection
* @return Collection
*/
public function getStep()
{
return $this->step;
}
/**
* Set gameAssoc
*
* @param string $gameAssoc
*
* @return PlayedGame
*/
public function setGameAssoc($gameAssoc)
{
$this->gameAssoc = $gameAssoc;
return $this;
}
/**
* Get gameAssoc
*
* @return string
*/
public function getGameAssoc()
{
return $this->gameAssoc;
}
}