Issues (22)

test.php (1 issue)

Labels
Severity
1
<?php
2
3
//require_once ('vendor/autoload.php');
4
5
use Alkoumi\LaravelArabicTafqeet\Tafqeet;
6
7
var_dump(Tafqeet::inArabic(3150.9));
0 ignored issues
show
3150.9 of type double is incompatible with the type integer expected by parameter $amount of Alkoumi\LaravelArabicTafqeet\Tafqeet::inArabic(). ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

7
var_dump(Tafqeet::inArabic(/** @scrutinizer ignore-type */ 3150.9));
Loading history...
8