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 | |||
13 | echo $result; |
||
0 ignored issues
–
show
Bug
introduced
by
![]() |
|||
14 | ob_end_flush(); |
||
15 |