Current Path : /home/cinepatreb/billetterie/vendor/bjeavons/zxcvbn-php/src/Math/Impl/ |
Current File : /home/cinepatreb/billetterie/vendor/bjeavons/zxcvbn-php/src/Math/Impl/BinomialProviderPhp73Gmp.php |
<?php declare(strict_types=1); namespace 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)); } }