Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
bracodev committed May 18, 2020
2 parents ef8fad0 + a4732f6 commit 76f58c4
Show file tree
Hide file tree
Showing 4 changed files with 170 additions and 169 deletions.
4 changes: 2 additions & 2 deletions examples/array.php
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?php

require __DIR__ . '/../src/CedulaVE.php';
require __DIR__.'/../src/CedulaVE.php';

use MegaCreativo\API\CedulaVE;

$data = CedulaVE::info('V', '4747476', false);

print("<pre>".print_r($data,true)."</pre>");
echo '<pre>'.print_r($data, true).'</pre>';
4 changes: 2 additions & 2 deletions examples/json-pretty-print.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

require __DIR__ . '/../src/CedulaVE.php';
require __DIR__.'/../src/CedulaVE.php';

use MegaCreativo\API\CedulaVE;

echo CedulaVE::info('V', '12345678', true, true);
echo CedulaVE::info('V', '12345678', true, true);
4 changes: 2 additions & 2 deletions examples/json.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

require __DIR__ . '/../src/CedulaVE.php';
require __DIR__.'/../src/CedulaVE.php';

use MegaCreativo\API\CedulaVE;

echo CedulaVE::info('V', '12345678');
echo CedulaVE::info('V', '12345678');

0 comments on commit 76f58c4

Please sign in to comment.