Skip to content

Commit

Permalink
Disable recall fetch by default
Browse files Browse the repository at this point in the history
  • Loading branch information
amattu2 committed Sep 11, 2021
1 parent 065892c commit cfa5854
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions index.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@
echo "</pre>";

// Fetch recalls
echo "<h1>Perform raw recall request</h1>", "<pre>";
$recalls = amattu\NHTSA::getRecalls(2015, "Ford", "Mustang");
print_r($recalls);
echo "</pre>";
//echo "<h1>Perform raw recall request</h1>", "<pre>";
//$recalls = amattu\NHTSA::getRecalls(2015, "Ford", "Mustang");
//print_r($recalls);
//echo "</pre>";

// Pretty parse recalls
echo "<h1>Pretty parse raw recall request</h1>", "<pre>";
print_r(amattu\NHTSA::parseRecalls($recalls));
echo "</pre>";
//echo "<h1>Pretty parse raw recall request</h1>", "<pre>";
//print_r(amattu\NHTSA::parseRecalls($recalls));
//echo "</pre>";
?>

0 comments on commit cfa5854

Please sign in to comment.