blob: d5e59e904a0bde6e1e2451d6be5b70dfb21923c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?php
// Generated by scripts/plugin-stub-generator; do not edit by hand.
// Proxy stub for Composer\IO\BufferIO: the public surface forwards to the Rust-side entity over RPC.
namespace Composer\IO;
class BufferIO extends ConsoleIO
{
public function getOutput(): string
{
return \ShirabeRpcRuntime::callRust($this->__rhandle, 'getOutput', []);
}
public function setUserInputs(array $inputs): void
{
\ShirabeRpcRuntime::callRust($this->__rhandle, 'setUserInputs', [$inputs]);
}
}
|