Issues (3)

test/index.php (1 issue)

Labels
Severity
1
<?php
2
require "config.php";
3
require "vendor/autoload.php";
4
use Erykai\Cryption\Cryption;
5
6
$email = "[email protected]";
7
8
$Cryption = new Cryption();
9
$emailCryption = $Cryption->encryption($email);
10
$emailDecryption = $Cryption->decryption($emailCryption);
11
12
print_r($emailCryption, $emailDecryption);
0 ignored issues
show
$emailDecryption of type null|string is incompatible with the type boolean expected by parameter $return of print_r(). ( Ignorable by Annotation )

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

12
print_r($emailCryption, /** @scrutinizer ignore-type */ $emailDecryption);
Loading history...