Skip to content

Commit

Permalink
Add missing methods to readme
Browse files Browse the repository at this point in the history
  • Loading branch information
A5hleyRich committed Apr 7, 2024
1 parent 1e5b413 commit d5d87ff
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,38 @@ $har->requests()->each(function(\DeploymentHawk\Request $request) {
})
```

#### `fastestRequest()`

Return the fastest network request:

```php
$har->fastestRequest(); // \DeploymentHawk\Request
```

#### `slowestRequest()`

Return the slowest network request:

```php
$har->slowestRequest(); // \DeploymentHawk\Request
```

#### `largestRequest()`

Return the largest network request:

```php
$har->largestRequest(); // \DeploymentHawk\Request
```

#### `smallestRequest()`

Return the smallest network request:

```php
$har->smallestRequest(); // \DeploymentHawk\Request
```

### Page Weight

#### `totalSize()`
Expand Down

0 comments on commit d5d87ff

Please sign in to comment.