Bristol SU Support Package
ConnectionRepository.php
Go to the documentation of this file.
1 <?php
2 
4 
6 
11 {
12 
18  public function all();
19 
26  public function get(int $id): Connection;
27 
34  public function delete(int $id);
35 
54  public function create(array $attributes): Connection;
55 
74  public function update(int $id, array $attributes): Connection;
75 
82  public function getAllForService(string $service);
83 
90  public function getAllForConnector(string $alias);
91 
92 }