1: | <?php declare(strict_types=1); |
2: | |
3: | namespace Salient\Contract\Core; |
4: | |
5: | /** |
6: | * Has underlying resources to close |
7: | * |
8: | * @api |
9: | */ |
10: | interface Unloadable |
11: | { |
12: | /** |
13: | * Close the object's underlying resources |
14: | */ |
15: | public function unload(): void; |
16: | } |
17: |