Skip to content

Commit

Permalink
Fixed spacing in parameter table
Browse files Browse the repository at this point in the history
  • Loading branch information
clvarley authored Aug 29, 2019
1 parent 7bda077 commit 1f0209c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,18 +44,18 @@ if( isset( $twitterAPI ) ){

$tweets = $twitterAPI->get([
'results_per_page' => 4, // int
'order' => 'asc', // 'asc|desc'
'order' => 'asc', // 'asc|desc'
'tweet_type' => 'all' // 'all|tweet|retweet|reply'
]);

}
```

| Parameter | Type | Description |
| :--- | :---: | :--- |
| `results_per_page` | int | The number of results to show per page |
| `order` | string | `desc` for newest first, `asc` for oldest |
| `tweet_type` | string | One of `all`, `tweet`, `retweet` or `reply`. What kinds of tweet should be returned. |
| Parameter | Type | Description |
| :--- | :---: | :--- |
| `results_per_page` | int | The number of results to show per page |
| `order` | string | `desc` for newest first, `asc` for oldest |
| `tweet_type` | string | One of `all`, `tweet`, `retweet` or `reply`. What kind of tweets should be returned. |

## Background syncing

Expand Down

0 comments on commit 1f0209c

Please sign in to comment.