1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-08-01 17:38:38 +00:00

Replaced json_array with array

And fixed failing test due to @j0k3r :trollface:
This commit is contained in:
Nicolas Lœuillet 2017-05-11 14:53:56 +02:00
parent dda6a6addc
commit 1517d5772d
2 changed files with 5 additions and 5 deletions

View file

@ -133,7 +133,7 @@ class Entry
/**
* @var array
*
* @ORM\Column(name="published_by", type="json_array", nullable=true)
* @ORM\Column(name="published_by", type="array", nullable=true)
*
* @Groups({"entries_for_user", "export_all"})
*/
@ -204,7 +204,7 @@ class Entry
/**
* @var array
*
* @ORM\Column(name="headers", type="json_array", nullable=true)
* @ORM\Column(name="headers", type="array", nullable=true)
*
* @Groups({"entries_for_user", "export_all"})
*/
@ -733,7 +733,7 @@ class Entry
}
/**
* @param string $publishedBy
* @param array $publishedBy
*
* @return Entry
*/
@ -753,7 +753,7 @@ class Entry
}
/**
* @param string $headers
* @param array $headers
*
* @return Entry
*/