Skip to content

Commit

Permalink
fix readme
Browse files Browse the repository at this point in the history
  • Loading branch information
jhowbhz authored Mar 1, 2024
1 parent 63773a8 commit d5289f5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -196,11 +196,14 @@ Com essa API é possível listar detalhes do seu plano
require_once('vendor/autoload.php');
use ApiBrasil\Service;

$plan = Service::Plan([
$plans = Service::Plan([
"Bearer" => "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.....",
"method" => "GET",
]);

var_dump($plans);
die;

// ou obter o plano do usuario
$plan = Service::Plan("me", [
"Bearer" => "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.....",
Expand Down

0 comments on commit d5289f5

Please sign in to comment.