diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-05-12 02:52:21 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-05-12 02:52:21 +0900 |
| commit | ae82788e7e80053c044940335a0a89737c2b0fb2 (patch) | |
| tree | a52e95f22e08839310292a012f169b7d361ff6a2 /crates/shirabe/src/repository | |
| parent | 8bf6f8e8ce56ab3f5c6cf1b0fe09fe51eaae9170 (diff) | |
| download | php-shirabe-ae82788e7e80053c044940335a0a89737c2b0fb2.tar.gz php-shirabe-ae82788e7e80053c044940335a0a89737c2b0fb2.tar.zst php-shirabe-ae82788e7e80053c044940335a0a89737c2b0fb2.zip | |
feat(port): ConfigurableRepositoryInterface.php
Diffstat (limited to 'crates/shirabe/src/repository')
| -rw-r--r-- | crates/shirabe/src/repository/configurable_repository_interface.rs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/crates/shirabe/src/repository/configurable_repository_interface.rs b/crates/shirabe/src/repository/configurable_repository_interface.rs index 855f71b..f6d36ba 100644 --- a/crates/shirabe/src/repository/configurable_repository_interface.rs +++ b/crates/shirabe/src/repository/configurable_repository_interface.rs @@ -1 +1,8 @@ //! ref: composer/src/Composer/Repository/ConfigurableRepositoryInterface.php + +use indexmap::IndexMap; +use shirabe_php_shim::PhpMixed; + +pub trait ConfigurableRepositoryInterface { + fn get_repo_config(&self) -> IndexMap<String, PhpMixed>; +} |
