============================= Rule ``random_api_migration`` ============================= Replaces ``rand``, ``srand``, ``getrandmax`` functions calls with their ``mt_*`` analogs or ``random_int``. Warning ------- Using this rule is risky ~~~~~~~~~~~~~~~~~~~~~~~~ Risky when the configured functions are overridden. Or when relying on the seed based generating of the numbers. Configuration ------------- ``replacements`` ~~~~~~~~~~~~~~~~ Mapping between replaced functions with the new ones. Allowed types: ``array`` Default value: ``['getrandmax' => 'mt_getrandmax', 'rand' => 'mt_rand', 'srand' => 'mt_srand']`` Examples -------- Example #1 ~~~~~~~~~~ *Default* configuration. .. code-block:: diff --- Original +++ New ['getrandmax' => 'mt_getrandmax']]``. .. code-block:: diff --- Original +++ New ['rand' => 'random_int']]``. .. code-block:: diff --- Original +++ New -`_ with config: ``['replacements' => ['mt_rand' => 'random_int', 'rand' => 'random_int']]`` - `@PHP71Migration:risky <./../../ruleSets/PHP71MigrationRisky.rst>`_ with config: ``['replacements' => ['mt_rand' => 'random_int', 'rand' => 'random_int']]`` - `@PHP74Migration:risky <./../../ruleSets/PHP74MigrationRisky.rst>`_ with config: ``['replacements' => ['mt_rand' => 'random_int', 'rand' => 'random_int']]`` - `@PHP80Migration:risky <./../../ruleSets/PHP80MigrationRisky.rst>`_ with config: ``['replacements' => ['mt_rand' => 'random_int', 'rand' => 'random_int']]``