DOCS fix DataList::exclude() code example

This commit is contained in:
Christopher Darling 2019-09-15 20:34:18 +01:00 committed by GitHub
parent aa6b244db9
commit c8f274de80
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']
);
```