Bristol SU Support Package
LogicRepository.php
Go to the documentation of this file.
1 <?php
2 
4 
7 
11 interface LogicRepository
12 {
13 
26  public function create(array $attributes);
27 
33  public function all();
34 
42  public function getById(int $id): Logic;
43 
52  public function update(int $id, array $attributes): Logic;
53 
61  public function delete(int $id);
62 }