nyx/tests/dynamic_fixtures/php/fileio_unsupported.php

14 lines
312 B
PHP
Raw Normal View History

<?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;
}
}
}