mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-01-16 19:05:08 -05:00
22 lines
425 B
PHP
22 lines
425 B
PHP
<?php
|
|
namespace App\Services;
|
|
|
|
use App\Repositories\SubscriptionRepository;
|
|
|
|
|
|
class SubscriptionService{
|
|
|
|
protected $subscribe;
|
|
|
|
public function __construct(SubscriptionRepository $subscribe){
|
|
$this->subscribe = $subscribe;
|
|
}
|
|
|
|
public function store($data){
|
|
return $this->subscribe->store($data);
|
|
}
|
|
|
|
public function verify($data){
|
|
return $this->subscribe->verify($data);
|
|
}
|
|
} |