16 lines
142 B
PHP
16 lines
142 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Repositories;
|
||
|
|
|
||
|
|
/**
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
class ClientContactRepository extends BaseRepository
|
||
|
|
{
|
||
|
|
|
||
|
|
public function save($data)
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|