mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 04:45:20 +01:00
db45ff1ba4
* add native return types * redundant phpdoc
24 lines
367 B
PHP
24 lines
367 B
PHP
<?php
|
|
if (!function_exists('random_bytes')) {
|
|
/**
|
|
* @param int $bytes
|
|
*
|
|
* @return void
|
|
*/
|
|
function random_bytes($bytes)
|
|
{
|
|
throw new \Exception('bad');
|
|
}
|
|
}
|
|
|
|
if (!function_exists('new_random_bytes')) {
|
|
/**
|
|
* @param int $bytes
|
|
*
|
|
*/
|
|
function new_random_bytes($bytes): int
|
|
{
|
|
return 5;
|
|
}
|
|
}
|