Skip to content

Commit

Permalink
abstract service class replaced by trait
Browse files Browse the repository at this point in the history
  • Loading branch information
hafijul233 committed Sep 19, 2024
1 parent 7d3ee48 commit ee81e7b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 3 additions & 1 deletion src/Services/ChatGroupService.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@
/**
* Class ChatGroupService
*/
class ChatGroupService extends \Fintech\Core\Abstracts\Service
class ChatGroupService
{
use \Fintech\Core\Traits\HasFindWhereSearch;

/**
* ChatGroupService constructor.
*/
Expand Down
4 changes: 3 additions & 1 deletion src/Services/ChatMessageService.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@
/**
* Class ChatMessageService
*/
class ChatMessageService extends \Fintech\Core\Abstracts\Service
class ChatMessageService
{
use \Fintech\Core\Traits\HasFindWhereSearch;

/**
* ChatMessageService constructor.
*/
Expand Down
4 changes: 3 additions & 1 deletion src/Services/ChatParticipantService.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@
/**
* Class ChatParticipantService
*/
class ChatParticipantService extends \Fintech\Core\Abstracts\Service
class ChatParticipantService
{
use \Fintech\Core\Traits\HasFindWhereSearch;

/**
* ChatParticipantService constructor.
*/
Expand Down

0 comments on commit ee81e7b

Please sign in to comment.