Skip to content

Commit

Permalink
Implement Orchestrable
Browse files Browse the repository at this point in the history
  • Loading branch information
r-kujawa committed Jun 6, 2024
1 parent fbb45a6 commit a9a619e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/Models/Payment.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@
namespace Payavel\Checkout\Models;

use Illuminate\Database\Eloquent\Model;
use Payavel\Orchestration\Contracts\Orchestrable;
use Payavel\Orchestration\Models\Account;
use Payavel\Orchestration\Models\Provider;
use Payavel\Orchestration\Support\ServiceConfig;
use Payavel\Orchestration\Traits\OrchestratesService;
use Payavel\Orchestration\Traits\HasFactory;

class Payment extends Model
class Payment extends Model implements Orchestrable
{
use HasFactory;
use OrchestratesService;
Expand Down
3 changes: 2 additions & 1 deletion src/Models/Wallet.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@
namespace Payavel\Checkout\Models;

use Illuminate\Database\Eloquent\Model;
use Payavel\Orchestration\Contracts\Orchestrable;
use Payavel\Orchestration\Traits\OrchestratesService;
use Payavel\Orchestration\Models\Account;
use Payavel\Orchestration\Models\Provider;
use Payavel\Orchestration\Support\ServiceConfig;
use Payavel\Orchestration\Traits\HasFactory;

class Wallet extends Model
class Wallet extends Model implements Orchestrable
{
use HasFactory;
use OrchestratesService;
Expand Down

0 comments on commit a9a619e

Please sign in to comment.