aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/DataFixtures
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2016-10-30 20:12:34 +0100
committerJeremy Benoist <jeremy.benoist@gmail.com>2016-10-30 20:12:34 +0100
commit309e13c11b54277626f18616c41f68ae9656a403 (patch)
tree5e562b4921c49fdd74e7be834367d0de98507eb1 /src/Wallabag/CoreBundle/DataFixtures
parent41ada277f066ea57947bce05bcda63962b7fea55 (diff)
downloadwallabag-309e13c11b54277626f18616c41f68ae9656a403.tar.gz
wallabag-309e13c11b54277626f18616c41f68ae9656a403.tar.zst
wallabag-309e13c11b54277626f18616c41f68ae9656a403.zip
Move settings before Entry
Because we need wallabag_url to be defined when we’ll insert entries
Diffstat (limited to 'src/Wallabag/CoreBundle/DataFixtures')
-rw-r--r--src/Wallabag/CoreBundle/DataFixtures/ORM/LoadSettingData.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/DataFixtures/ORM/LoadSettingData.php b/src/Wallabag/CoreBundle/DataFixtures/ORM/LoadSettingData.php
index a5e1be65..12f66c19 100644
--- a/src/Wallabag/CoreBundle/DataFixtures/ORM/LoadSettingData.php
+++ b/src/Wallabag/CoreBundle/DataFixtures/ORM/LoadSettingData.php
@@ -158,6 +158,6 @@ class LoadSettingData extends AbstractFixture implements OrderedFixtureInterface
158 */ 158 */
159 public function getOrder() 159 public function getOrder()
160 { 160 {
161 return 50; 161 return 29;
162 } 162 }
163} 163}