mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
15 lines
310 B
PHP
15 lines
310 B
PHP
<?php
|
|
/**
|
|
* @package framework
|
|
* @subpackage admin
|
|
* @deprecated 3.0 Use {@link LeftAndMainExtension}
|
|
*/
|
|
abstract class LeftAndMainDecorator extends LeftAndMainExtension {
|
|
|
|
public function __construct() {
|
|
Deprecation::notice('3.0', 'Use LeftAndMainExtension instead.');
|
|
parent::__construct();
|
|
}
|
|
|
|
}
|