Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
better-wp-security
/
vendor-prod
/
bjeavons
/
zxcvbn-php
/
src
/
Math
/
Impl
:
BinomialProviderPhp73Gmp.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * @license MIT * * Modified using Strauss. * @see https://github.com/BrianHenryIE/strauss */ declare(strict_types=1); namespace iThemesSecurity\Strauss\ZxcvbnPhp\Math\Impl; class BinomialProviderPhp73Gmp extends AbstractBinomialProvider { /** * @noinspection PhpElementIsNotAvailableInCurrentPhpVersionInspection * @noinspection PhpComposerExtensionStubsInspection */ protected function calculate(int $n, int $k): float { return (float)gmp_strval(gmp_binomial($n, $k)); } }