Skip to content

Commit

Permalink
Merge pull request #1 from megacreativo/analysis-1b3pkN
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
bracodev authored May 18, 2020
2 parents 460fd4a + 693c972 commit a4732f6
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');
Loading

0 comments on commit a4732f6

Please sign in to comment.