<?php fclose(resource $stream): bool
<?php fwrite($this->teamcityLogFileHandle, $teamcityProgress); $resource = $this->teamcityLogFileHandle; $this->teamcityLogFileHandle = null; fclose($resource); } }
<?php $ftell = ftell($handle); assert($ftell !== false); $this->tailPositions[$path] = $ftell; fclose($handle); return $contents; }
<?php $resource = tmpfile(); afterAll(function () use ($resource) { fclose($resource); }); test('pass', function () use ($resource) {