codepress-admin-columns
/
classes
/
ListScreenRepository
/
Storage
/
ListScreenRepositoryFactory.php
ListScreenRepositoryFactory.php
19 lines
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace AC\ListScreenRepository\Storage; |
| 6 | |
| 7 | use AC\ListScreenRepository\Rules; |
| 8 | |
| 9 | interface ListScreenRepositoryFactory |
| 10 | { |
| 11 | public function create( |
| 12 | string $path, |
| 13 | bool $writable, |
| 14 | ?Rules $rules = null, |
| 15 | ?string $i18n_text_domain = null |
| 16 | ): ListScreenRepository; |
| 17 | |
| 18 | } |
| 19 |