]> Raphaƫl G. Git Repositories - treebundle/blobdiff - Entity/Element.php
Rename asset into element
[treebundle] / Entity / Element.php
similarity index 80%
rename from Entity/Asset.php
rename to Entity/Element.php
index 666277d7bdf89a3fa264e7e82b263b96b0724e7e..464c5378fbf3a7775d852082b9d8b4e16e7a9aee 100644 (file)
@@ -16,9 +16,9 @@ use Doctrine\Common\Collections\ArrayCollection;
 use Doctrine\ORM\Event\PreUpdateEventArgs;
 
 /**
- * Asset
+ * Element
  */
-class Asset {
+class Element {
        /**
         * @var ?int
         */
@@ -37,7 +37,7 @@ class Asset {
        /**
         * Constructor
         *
-        * @param ?string $path The asset path
+        * @param ?string $path The element path
         */
        public function __construct(private Album $album, private User $user, private ?string $path = null) {
                $this->created = new \DateTime('now');
@@ -58,9 +58,9 @@ class Asset {
         *
         * @param \Rapsys\TreeBundle\Entity\Album $album
         *
-        * @return Asset
+        * @return Element
         */
-       public function setAlbum(Album $album): Asset {
+       public function setAlbum(Album $album): Element {
                $this->album = $album;
 
                return $this;
@@ -80,9 +80,9 @@ class Asset {
         *
         * @param \Rapsys\TreeBundle\Entity\User $user
         *
-        * @return Asset
+        * @return Element
         */
-       public function setUser(User $user): Asset {
+       public function setUser(User $user): Element {
                $this->user = $user;
 
                return $this;
@@ -102,9 +102,9 @@ class Asset {
         *
         * @param ?string $path
         *
-        * @return Asset
+        * @return Element
         */
-       public function setPath(?string $path): Asset {
+       public function setPath(?string $path): Element {
                $this->path = $path;
 
                return $this;
@@ -124,9 +124,9 @@ class Asset {
         *
         * @param \DateTime $created
         *
-        * @return Asset
+        * @return Element
         */
-       public function setCreated(\DateTime $created): Asset {
+       public function setCreated(\DateTime $created): Element {
                $this->created = $created;
 
                return $this;
@@ -146,9 +146,9 @@ class Asset {
         *
         * @param \DateTime $updated
         *
-        * @return Asset
+        * @return Element
         */
-       public function setUpdated(\DateTime $updated): Asset {
+       public function setUpdated(\DateTime $updated): Element {
                $this->updated = $updated;
 
                return $this;
@@ -166,9 +166,9 @@ class Asset {
        /**
         * {@inheritdoc}
         */
-       public function preUpdate(PreUpdateEventArgs $eventArgs): ?Asset {
+       public function preUpdate(PreUpdateEventArgs $eventArgs): ?Element {
                //Check that we have an snippet instance
-               if (($entity = $eventArgs->getEntity()) instanceof Asset) {
+               if (($entity = $eventArgs->getEntity()) instanceof Element) {
                        //Set updated value
                        return $entity->setUpdated(new \DateTime('now'));
                }