blob: f4fb9e2b896a24281530c73128fdc10a61ff7ecf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
// Generated by scripts/plugin-stub-generator; do not edit by hand.
// Proxy stub for Composer\Repository\InstalledFilesystemRepository: the public surface forwards to the Rust-side entity over RPC.
namespace Composer\Repository;
class InstalledFilesystemRepository extends FilesystemRepository implements InstalledRepositoryInterface
{
public function isFresh()
{
return \ShirabeRpcRuntime::callRust($this->__rhandle, 'isFresh', []);
}
}
|