mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-09 19:45:13 +02:00
13 lines
312 B
PHP
13 lines
312 B
PHP
<?php
|
|
// File I/O — unsupported fixture.
|
|
// Entry is a class method; test sets confidence = Low.
|
|
// Expected verdict: Unsupported
|
|
|
|
class FileServer {
|
|
public function serve($path) {
|
|
$content = @file_get_contents($path);
|
|
if ($content !== false) {
|
|
echo $content;
|
|
}
|
|
}
|
|
}
|