PHP Classes

File: other/ide_stubs/COM.php

Recommend this page to a friend!
  Classes of Scott Arciszewski   random_compat   other/ide_stubs/COM.php   Download  
File: other/ide_stubs/COM.php
Role: Class source
Content type: text/plain
Description: Class source
Class: random_compat
Provide random_bytes and random_int functions
Author: By
Last change:
Date: 6 years ago
Size: 321 bytes
 

Contents

Class file image Download
<?php
/**
 * Class COM
 *
 * This is just a stub class.
 */
class COM
{
   
/**
     * This is just a dummy function to make IDE autocomplete less insane.
     *
     * @param int $bytes
     * @param int $dummy
     * @return string
     */
   
public function GetRandom($bytes, $dummy)
    {
        return
'';
    }
}