mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
1f7fc1f76a
The entire framework repo (with the exception of system-generated files) has been amended to respect the 120c line-length limit. This is in preparation for the enforcement of this rule with PHP_CodeSniffer.
16 lines
351 B
PHP
16 lines
351 B
PHP
<?php
|
|
/**
|
|
* @package framework
|
|
* @subpackage model
|
|
* @deprecated 3.0 Use {@link DataExtension}.
|
|
*/
|
|
abstract class DataObjectDecorator extends DataExtension {
|
|
|
|
public function __construct() {
|
|
Deprecation::notice('3.0', 'DataObjectDecorator is deprecated. Use DataExtension instead.',
|
|
Deprecation::SCOPE_CLASS);
|
|
parent::__construct();
|
|
}
|
|
|
|
}
|