Skip to content

Commit

Permalink
docs: update readme code blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
ctran88 committed Jan 14, 2025
1 parent 8683ff1 commit 0a1745d
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,17 +44,15 @@ composer require passageidentity/passage-php
### Import

```php
use Passage\Client\Controllers\Passage;
use Passage\Client\Passage;
```

### Initialize

```php
$app_id = 'YOUR_PASSAGE_APP_ID';
$api_key = 'YOUR_PASSAGE_API_KEY';
$passage = new Passage(
$app_id,
$api_key
$_ENV['PASSAGE_APP_ID'],
$_ENV['PASSAGE_API_KEY'],
);
```

Expand Down

0 comments on commit 0a1745d

Please sign in to comment.