diff options
Diffstat (limited to 'src/Wallabag')
-rw-r--r-- | src/Wallabag/CoreBundle/Entity/Entry.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Wallabag/CoreBundle/Entity/Entry.php b/src/Wallabag/CoreBundle/Entity/Entry.php index f0983b1c..08a67c34 100644 --- a/src/Wallabag/CoreBundle/Entity/Entry.php +++ b/src/Wallabag/CoreBundle/Entity/Entry.php | |||
@@ -133,7 +133,7 @@ class Entry | |||
133 | /** | 133 | /** |
134 | * @var array | 134 | * @var array |
135 | * | 135 | * |
136 | * @ORM\Column(name="published_by", type="json_array", nullable=true) | 136 | * @ORM\Column(name="published_by", type="array", nullable=true) |
137 | * | 137 | * |
138 | * @Groups({"entries_for_user", "export_all"}) | 138 | * @Groups({"entries_for_user", "export_all"}) |
139 | */ | 139 | */ |
@@ -204,7 +204,7 @@ class Entry | |||
204 | /** | 204 | /** |
205 | * @var array | 205 | * @var array |
206 | * | 206 | * |
207 | * @ORM\Column(name="headers", type="json_array", nullable=true) | 207 | * @ORM\Column(name="headers", type="array", nullable=true) |
208 | * | 208 | * |
209 | * @Groups({"entries_for_user", "export_all"}) | 209 | * @Groups({"entries_for_user", "export_all"}) |
210 | */ | 210 | */ |
@@ -733,7 +733,7 @@ class Entry | |||
733 | } | 733 | } |
734 | 734 | ||
735 | /** | 735 | /** |
736 | * @param string $publishedBy | 736 | * @param array $publishedBy |
737 | * | 737 | * |
738 | * @return Entry | 738 | * @return Entry |
739 | */ | 739 | */ |
@@ -753,7 +753,7 @@ class Entry | |||
753 | } | 753 | } |
754 | 754 | ||
755 | /** | 755 | /** |
756 | * @param string $headers | 756 | * @param array $headers |
757 | * | 757 | * |
758 | * @return Entry | 758 | * @return Entry |
759 | */ | 759 | */ |