Adapter
1 week ago
Decorator
1 week ago
AllDataAccessContainer.php
1 week ago
DeferredPersistentContainer.php
1 week ago
ElementNotExistsException.php
1 week ago
PersistentContainer.php
1 week ago
AllDataAccessContainer.php
20 lines
| 1 | <?php |
| 2 | |
| 3 | namespace FSVendor\WPDesk\Persistence; |
| 4 | |
| 5 | use FSVendor\Psr\Container\ContainerInterface; |
| 6 | /** |
| 7 | * Container that allows to get all data stored by container. |
| 8 | * |
| 9 | * @package WPDesk\Persistence |
| 10 | */ |
| 11 | interface AllDataAccessContainer extends ContainerInterface |
| 12 | { |
| 13 | /** |
| 14 | * Get all values. |
| 15 | * |
| 16 | * @return array |
| 17 | */ |
| 18 | public function get_all(); |
| 19 | } |
| 20 |