Skip to content

Commit f59be61

Browse files
authored
Merge pull request #120 from Sekonda/master
Fixes header in the README.md file
2 parents 67103d2 + 8ab2c9f commit f59be61

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -95,10 +95,10 @@ $client->setReadKey($newReadKey);
9595

9696
```
9797

98-
####Send an event to Keen - ([Changed in 2.0!](CHANGE.md))
98+
#### Send an event to Keen - ([Changed in 2.0!](CHANGE.md))
9999
Once you've created a `KeenIOClient`, sending events is simple:
100100

101-
######Example
101+
###### Example
102102
```php
103103
$event = ['purchase' => ['item' => 'Golden Elephant']];
104104

@@ -166,7 +166,7 @@ Scoped keys allow you to secure the requests to the API Endpoints and are especi
166166
access to multiple clients or applications. You should read the Keen IO docs concerning [Scoped Keys](https://keen.io/docs/security/#scoped-key)
167167
for more details.
168168

169-
######Example
169+
###### Example
170170
```php
171171
$filter = [
172172
'property_name' => 'user_id',
@@ -184,7 +184,7 @@ $scopedKey = $client->createScopedKey($filters, $allowedOperations);
184184

185185
[Saved Queries](https://keen.io/docs/api/?php#saved-queries) allow you to perform with exactly the same parameters every time with minimal effort. It's effectively a bookmark or macro to analysis that you can jump to or share without configuring each time. While you can create and access them via the Dashboard, the PHP library gives you the same ability.
186186

187-
######Example: Creating a Saved Query
187+
###### Example: Creating a Saved Query
188188
```php
189189
$client = KeenIOClient::factory([
190190
'projectId' => $project_id,
@@ -208,7 +208,7 @@ $query = [
208208
$results = $client->createSavedQuery(['query_name' => 'total-API-requests', 'query' => $query]);
209209
```
210210

211-
######Example: Retrieving a Saved Query
211+
###### Example: Retrieving a Saved Query
212212
```php
213213
$client = KeenIOClient::factory([
214214
'projectId' => $project_id,

0 commit comments

Comments
 (0)