mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
13 lines
315 B
PHP
Executable File
13 lines
315 B
PHP
Executable File
<?php
|
|
/**
|
|
* @deprecated 2.5 Use ManyManyList or HasManyList
|
|
*/
|
|
class ComponentSet extends DataObjectSet {
|
|
function setComponentInfo($type, $ownerObj, $ownerClass, $tableName, $childClass, $joinField = null) {
|
|
user_error("ComponentSet is deprecated; use HasManyList or ManyManyList", E_USER_WARNING);
|
|
}
|
|
|
|
}
|
|
|
|
?>
|