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