Skip to content

Commit a8d05d5

Browse files
committed
updated example.php to use composer
1 parent 26774d1 commit a8d05d5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

example.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22
error_reporting(E_ALL);
33
ini_set('display_errors', 1);
4-
include 'verifyEmail/verify.class.php';
4+
include 'vendor/autoload.php';
55

6-
$ve = new VE\VerifyEmail('<EMAIL TO VERIFY>', '<VALID EMAIL FROM YOUR SERVER>');
6+
$ve = new hbattat\VerifyEmail('<EMAIL TO VERIFY>', '<VALID EMAIL FROM YOUR SERVER>');
77

88
var_dump($ve->verify());
99

0 commit comments

Comments
 (0)