mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
10 lines
345 B
PHP
10 lines
345 B
PHP
<?php
|
|
/**
|
|
* @deprecated 3.0 Use ManyManyList or HasManyList
|
|
*/
|
|
class ComponentSet extends DataObjectSet {
|
|
function setComponentInfo($type, $ownerObj, $ownerClass, $tableName, $childClass, $joinField = null) {
|
|
Deprecation::notice('3.0', 'ComponentSet is deprecated. Use ManyManyList or HasManyList instead.', Deprecation::SCOPE_CLASS);
|
|
}
|
|
}
|