Issues (2)

Examples/Create-Pass.php (1 issue)

Labels
Severity
1
<?php
2
ob_start();
3
4
require "../Developers/Password.php";
5
//My Password
6
$pass = '12345';
7
$url = new \Developers\Password();
8
9
//Call the method to create the password
10
$result = $url -> CreatePass($pass);
11
12
//Print
13
echo $result;
0 ignored issues
show
Are you sure $result of type false|string can be used in echo? ( Ignorable by Annotation )

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

13
echo /** @scrutinizer ignore-type */ $result;
Loading history...
14
ob_end_flush();
15