Skip to content

Commit

Permalink
Extend README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
enwikuna committed May 5, 2024
1 parent a4e8912 commit 86452ae
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,16 @@ public function has_expired(): bool {
}
```

#### Proper usage of the defined functions

You can now call the defined functions to do some checks.

```php
if ( $this->is_registered() && ! $this->has_expired() ) {
// Integrate your main classes or load stuff which should be available if the license is registered and has not expired
}
```

### Test if everything works

After following all the above steps, your client should be ready to use! You can now test the client by creating a new
Expand Down

0 comments on commit 86452ae

Please sign in to comment.