Remove deprecated LeftAndMainDecorator, use LeftAndMainExtension instead

This commit is contained in:
Sean Harvey 2012-11-15 10:33:18 +13:00
parent 1500aba1c3
commit 6a9617bf6b

View File

@ -1,14 +0,0 @@
<?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.', Deprecation::SCOPE_CLASS);
parent::__construct();
}
}