Skip to content

Commit

Permalink
boyscouting
Browse files Browse the repository at this point in the history
  • Loading branch information
gwleuverink committed Aug 26, 2024
1 parent f1427ae commit adfdf07
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ $this->group('a')->validate();
### Working with Multiple Groups

```php
// retrieve properties from multiple groups
// Retrieve properties from multiple groups
$this->group(['a', 'b']);

// Validate multiple groups
Expand All @@ -74,22 +74,18 @@ $this->group(['a', 'b'])->validate();
### Debugging

```php
// Dump group properties
// dump group properties
$this->group('a')->dump();

// dd group properties
$this->group('a')->dd();

// Dump is chainable
// dump is chainable
$validated = $this->group('a')
->dump()
->validate();
```

<br />
<hr />
<br />

## Development

```bash
Expand Down

0 comments on commit adfdf07

Please sign in to comment.