| 1 | <?php |
||
| 14 | class RandomApiMigration implements PassFunctionCallInterface |
||
| 15 | { |
||
| 16 | use ResolveExpressionTrait; |
||
| 17 | |||
| 18 | protected $map = array( |
||
| 19 | 'rand' => 'mt_rand', |
||
| 20 | 'srand' => 'mt_srand', |
||
| 21 | 'getrandmax' => 'mt_getrandmax' |
||
| 22 | ); |
||
| 23 | |||
| 24 | 5 | public function pass(FuncCall $funcCall, Context $context) |
|
| 39 | } |
||
| 40 |