1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-02 17:52:45 +01:00
psalm/tests/stubs/polyfill.php

12 lines
192 B
PHP

<?php
if (!function_exists("random_bytes")) {
/**
* @param int $bytes
* @return void
*/
function random_bytes($bytes)
{
throw new \Exception("bad");
}
}