blob: 718b2c1b163136d4c42b55dc8f9dcb692018fc3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//! ref: composer/src/Composer/Downloader/ChangeReportInterface.php
use anyhow::Result;
use crate::package::PackageInterfaceHandle;
pub trait ChangeReportInterface {
fn get_local_changes(
&mut self,
package: PackageInterfaceHandle,
path: &str,
) -> Result<Option<String>>;
}
|