mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
DOCS fix DataList::exclude() code example
This commit is contained in:
parent
aa6b244db9
commit
c8f274de80
@ -471,7 +471,7 @@ Remove both Sam and Sig..
|
|||||||
|
|
||||||
```php
|
```php
|
||||||
$players = Player::get()->exclude(
|
$players = Player::get()->exclude(
|
||||||
'FirstName', ['Sam','Sig']
|
'FirstName' => ['Sam','Sig']
|
||||||
);
|
);
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user