Issues (2)

Examples/Generate-Pass.php (1 issue)

Labels
Severity
1
<?php
2
ob_start();
3
4
require "../Developers/Password.php";
5
6
$url = new \Developers\Password();
7
8
//Generates the password randomly, including uppercase, lowercase, numbers and symbols.
9
$result = $url -> GeneratePass();
10
11
//Print
12
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

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