aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Entity/Entry.php
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2016-08-24 09:07:49 +0200
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2016-08-24 09:07:49 +0200
commit78b3c31d7025c743c80bcc44adda21379de8f6c5 (patch)
treeebf6f204134c1245f369c14107c8d7ed081817be /src/Wallabag/CoreBundle/Entity/Entry.php
parent3e860ff1ce19d045b4d5af4e30bd3d56300a683c (diff)
downloadwallabag-78b3c31d7025c743c80bcc44adda21379de8f6c5.tar.gz
wallabag-78b3c31d7025c743c80bcc44adda21379de8f6c5.tar.zst
wallabag-78b3c31d7025c743c80bcc44adda21379de8f6c5.zip
Change annotation for uuid field
Diffstat (limited to 'src/Wallabag/CoreBundle/Entity/Entry.php')
-rw-r--r--src/Wallabag/CoreBundle/Entity/Entry.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Wallabag/CoreBundle/Entity/Entry.php b/src/Wallabag/CoreBundle/Entity/Entry.php
index 8c20cde2..67c2bb43 100644
--- a/src/Wallabag/CoreBundle/Entity/Entry.php
+++ b/src/Wallabag/CoreBundle/Entity/Entry.php
@@ -38,7 +38,7 @@ class Entry
38 private $id; 38 private $id;
39 39
40 /** 40 /**
41 * @var int 41 * @var string
42 * 42 *
43 * @ORM\Column(name="uuid", type="text", nullable=true) 43 * @ORM\Column(name="uuid", type="text", nullable=true)
44 * 44 *
@@ -606,7 +606,7 @@ class Entry
606 } 606 }
607 607
608 /** 608 /**
609 * @return int 609 * @return string
610 */ 610 */
611 public function getUuid() 611 public function getUuid()
612 { 612 {
@@ -614,7 +614,7 @@ class Entry
614 } 614 }
615 615
616 /** 616 /**
617 * @param int $uuid 617 * @param string $uuid
618 * 618 *
619 * @return Entry 619 * @return Entry
620 */ 620 */