Skip to content

Commit

Permalink
feat(service): create base service
Browse files Browse the repository at this point in the history
  • Loading branch information
txsoura committed May 9, 2021
1 parent 35ee0cb commit 6662d4a
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/Services/CoreService.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?php

namespace Txsoura\Core\Services;

use Txsoura\Core\Helpers;

abstract class CoreService
{
use Helpers;

/**
* Model class for crud.
*
* @return string
*/
abstract protected function model(): string;
}

0 comments on commit 6662d4a

Please sign in to comment.