-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathView.php
More file actions
32 lines (25 loc) · 577 Bytes
/
View.php
File metadata and controls
32 lines (25 loc) · 577 Bytes
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
28
29
30
31
32
<?php
declare(strict_types=1);
namespace DragonCode\Benchmark\View;
use function fopen;
use function fwrite;
abstract class View
{
/** @var resource|null */
protected static mixed $stream = null;
protected function writeLine(string $line): void
{
fwrite($this->stream(), $line . PHP_EOL);
}
protected function write(string $line): void
{
fwrite($this->stream(), $line);
}
/**
* @return resource
*/
protected function stream()
{
return static::$stream ??= fopen('php://stderr', 'wb');
}
}