blob: e95fb2dad1455f4b96a94fca8dc4040e12c32d9d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?php
// Hand-written proxy stub for Composer\IO\BufferIO, kept in the shape the future stub
// generator will output.
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]);
}
}
|