15 lines
222 B
PHP
15 lines
222 B
PHP
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
interface ServiceInterface
|
|
{
|
|
public function getAll();
|
|
|
|
public function create(array $data);
|
|
|
|
public function update($model, array $data);
|
|
|
|
public function delete($model);
|
|
}
|