blob: 6cee4b450ea48968d1626e40e1eeb1a44c440d94 (
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\InstalledArrayRepository: the public surface forwards to the Rust-side entity over RPC.
namespace Composer\Repository;
class InstalledArrayRepository extends WritableArrayRepository implements InstalledRepositoryInterface
{
public function isFresh(): bool
{
return \ShirabeRpcRuntime::callRust($this->__rhandle, 'isFresh', []);
}
}
|