14 lines
348 B
PHP
14 lines
348 B
PHP
|
<?php
|
||
|
|
||
|
namespace Modules\Office\Repositories;
|
||
|
|
||
|
interface GeneratorInterface
|
||
|
{
|
||
|
public function pluck();
|
||
|
public function findAll();
|
||
|
public function getGeneratorById($generatorId);
|
||
|
public function delete($generatorId);
|
||
|
public function create(array $generatorDetails);
|
||
|
public function update($generatorId, array $newDetails);
|
||
|
}
|