Skip to content

Commit

Permalink
Disable soft deletes.
Browse files Browse the repository at this point in the history
  • Loading branch information
mtvbrianking committed Aug 17, 2019
1 parent 539659f commit 7487351
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/Models/Token.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
namespace Bmatovu\MtnMomo\Models;

use Bmatovu\MtnMomo\Traits\TokenUtilTrait;
use Illuminate\Database\Eloquent\SoftDeletes;
// use Illuminate\Database\Eloquent\SoftDeletes;
use Bmatovu\OAuthNegotiator\Models\TokenInterface;
use Illuminate\Database\Eloquent\Model as BaseModel;

Expand All @@ -15,7 +15,8 @@
*/
class Token extends BaseModel implements TokenInterface
{
use SoftDeletes, TokenUtilTrait;
// use SoftDeletes;
use TokenUtilTrait;

/**
* The table associated with the model.
Expand Down

0 comments on commit 7487351

Please sign in to comment.