Merge pull request #9238 from christopherdarling/patch-15

DOCS fix DataList::exclude() code example
This commit is contained in:
Robbie Averill 2019-09-15 12:36:10 -07:00 committed by GitHub
commit ed64adf12a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -471,7 +471,7 @@ Remove both Sam and Sig..
```php
$players = Player::get()->exclude(
'FirstName', ['Sam','Sig']
'FirstName' => ['Sam','Sig']
);
```