opsdash-app/opsdash/tests/php/stubs/Symfony/Component/Console/Output/OutputInterface.php
2026-05-14 13:48:45 +07:00

9 lines
152 B
PHP

<?php
declare(strict_types=1);
namespace Symfony\Component\Console\Output;
interface OutputInterface {
public function writeln(string $messages);
}