Bristol SU Support Package
ActionInstanceRepository.php
Go to the documentation of this file.
1 <?php
2 
4 
8 
10 {
11 
20  public function forEvent(int $moduleInstanceId, string $event): Collection;
21 
28  public function forModuleInstance(int $moduleInstanceId): Collection;
29 
38  public function getById(int $id): ActionInstance;
39 
44  public function all(): Collection;
45 
55  public function update(int $id, array $attributes): ActionInstance;
56 
65  public function delete(int $id);
66 
67 }
forEvent(int $moduleInstanceId, string $event)