-<?php
+<?php declare(strict_types=1);
+
+/*
+ * this file is part of the rapsys packbundle package.
+ *
+ * (c) raphaël gertz <symfony@rapsys.eu>
+ *
+ * for the full copyright and license information, please view the license
+ * file that was distributed with this source code.
+ */
namespace Rapsys\AirBundle\Entity;
+use Doctrine\Common\Collections\ArrayCollection;
+use Doctrine\ORM\Event\PreUpdateEventArgs;
+
/**
* Slot
*/
private $updated;
/**
- * @var \Doctrine\Common\Collections\Collection
+ * @var ArrayCollection
*/
private $sessions;
* Constructor
*/
public function __construct() {
- $this->sessions = new \Doctrine\Common\Collections\ArrayCollection();
+ //Set defaults
+ $this->created = new \DateTime('now');
+ $this->updated = new \DateTime('now');
+ $this->sessions = new ArrayCollection();
}
/**
*
* @return integer
*/
- public function getId() {
+ public function getId(): int {
return $this->id;
}
*
* @return Title
*/
- public function setTitle($title) {
+ public function setTitle(string $title) {
$this->title = $title;
return $this;
*
* @return Slot
*/
- public function setCreated($created) {
+ public function setCreated(\DateTime $created) {
$this->created = $created;
return $this;
*
* @return \DateTime
*/
- public function getCreated() {
+ public function getCreated(): \DateTime {
return $this->created;
}
*
* @return Slot
*/
- public function setUpdated($updated) {
+ public function setUpdated(\DateTime $updated) {
$this->updated = $updated;
return $this;
*
* @return \DateTime
*/
- public function getUpdated() {
+ public function getUpdated(): \DateTime {
return $this->updated;
}
/**
* Add session
*
- * @param \Rapsys\AirBundle\Entity\Session $session
+ * @param Session $session
*
* @return Slot
*/
- public function addSession(\Rapsys\AirBundle\Entity\Session $session) {
+ public function addSession(Session $session): Slot {
$this->sessions[] = $session;
return $this;
/**
* Remove session
*
- * @param \Rapsys\AirBundle\Entity\Session $session
+ * @param Session $session
*/
- public function removeSession(\Rapsys\AirBundle\Entity\Session $session) {
- $this->sessions->removeElement($session);
+ public function removeSession(Session $session): bool {
+ return $this->sessions->removeElement($session);
}
/**
* Get sessions
*
- * @return \Doctrine\Common\Collections\Collection
+ * @return ArrayCollection
*/
- public function getSessions() {
+ public function getSessions(): ArrayCollection {
return $this->sessions;
}
+ /**
+ * {@inheritdoc}
+ */
+ public function preUpdate(PreUpdateEventArgs $eventArgs) {
+ //Check that we have a slot instance
+ if (($slot = $eventArgs->getEntity()) instanceof Slot) {
+ //Set updated value
+ $slot->setUpdated(new \DateTime('now'));
+ }
+ }
+
/**
* Returns a string representation of the slot
*