blob: acd5abec04db6b4118bf6fe903153d8459a762af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<?php
// Generated by scripts/plugin-stub-generator; do not edit by hand.
// Proxy stub for Composer\DependencyResolver\Operation\MarkAliasUninstalledOperation: the public surface forwards to the Rust-side entity over RPC.
namespace Composer\DependencyResolver\Operation;
use Composer\Package\AliasPackage;
class MarkAliasUninstalledOperation extends SolverOperation implements OperationInterface
{
public function __construct(AliasPackage $package)
{
[$this->__rhandle, $this->__epoch] = \ShirabeRpcRuntime::callRust(0, '__shirabeConstruct', [static::class, [$package]]);
\ShirabeRustObjectRegistry::adopt($this->__rhandle, $this);
}
protected const TYPE = 'markAliasUninstalled';
public function getPackage(): AliasPackage
{
return \ShirabeRpcRuntime::callRust($this->__rhandle, 'getPackage', []);
}
}
|