blob: 1ea0d8b301ca2bcb430ff6ef912c601f524404ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//! ref: composer/src/Composer/Repository/LockArrayRepository.php
use crate::repository::array_repository::ArrayRepository;
use crate::repository::canonical_packages_trait::CanonicalPackagesTrait;
#[derive(Debug)]
pub struct LockArrayRepository {
inner: ArrayRepository,
}
impl CanonicalPackagesTrait for LockArrayRepository {}
impl LockArrayRepository {
pub fn get_repo_name(&self) -> &str {
"lock repo"
}
}
|