blob: 6a4c2ac48f42cebd87d8467d9d28ad6a538ab0bb (
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
25
26
27
|
<?php
// Hand-written proxy stub for Composer\IO\ConsoleIO, kept in the shape the future stub
// generator will output. The IOInterface surface is inherited from the BaseIO stub; only the
// public methods ConsoleIO adds are declared here.
namespace Composer\IO;
use Symfony\Component\Console\Helper\Table;
class ConsoleIO extends BaseIO
{
public function enableDebugging(float $startTime)
{
return \ShirabeRpcRuntime::callRust($this->__rhandle, 'enableDebugging', [$startTime]);
}
public function getProgressBar(int $max = 0)
{
return \ShirabeRpcRuntime::callRust($this->__rhandle, 'getProgressBar', [$max]);
}
public function getTable(): Table
{
return \ShirabeRpcRuntime::callRust($this->__rhandle, 'getTable', []);
}
}
|