From 0a818526e0e0fb6dacc8d25bf7973fb6a25ed2ba Mon Sep 17 00:00:00 2001 From: Jeramy Simpson Date: Thu, 26 Mar 2015 13:52:42 +1000 Subject: [PATCH] Update Namespacing --- app/Models/Account.php | 1 + app/Models/Activity.php | 2 ++ app/Models/EntityModel.php | 4 ++++ app/Models/User.php | 18 +++--------------- 4 files changed, 10 insertions(+), 15 deletions(-) diff --git a/app/Models/Account.php b/app/Models/Account.php index f86460a79435..ecf99aba847d 100644 --- a/app/Models/Account.php +++ b/app/Models/Account.php @@ -1,6 +1,7 @@ belongsTo('Account'); + return $this->belongsTo('App\Models\Account'); } public function theme() { - return $this->belongsTo('Theme'); + return $this->belongsTo('App\Models\Theme'); } public function getPersonType()