| 1 | <?php |
||
| 21 | class ElementalGridFieldAddExistingAutocompleter extends GridFieldAddExistingAutocompleter { |
||
|
|
|||
| 22 | |||
| 23 | /** |
||
| 24 | * If an object ID is set, add the object to the list |
||
| 25 | * |
||
| 26 | * @param GridField $gridField |
||
| 27 | * @param SS_List $dataList |
||
| 28 | * @return SS_List |
||
| 29 | */ |
||
| 30 | public function getManipulatedData(GridField $gridField, SS_List $dataList) |
||
| 52 | } |
||
| 53 |
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.