mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-16 14:29:30 +08:00
refactored object creation.
added more exception classes. working on request and response classes.
This commit is contained in:
@@ -23,7 +23,7 @@ namespace yii\logging;
|
||||
* @author Qiang Xue <qiang.xue@gmail.com>
|
||||
* @since 2.0
|
||||
*/
|
||||
abstract class Target extends \yii\base\Component implements \yii\base\Initable
|
||||
abstract class Target extends \yii\base\Component
|
||||
{
|
||||
/**
|
||||
* @var boolean whether to enable this log target. Defaults to true.
|
||||
@@ -89,15 +89,6 @@ abstract class Target extends \yii\base\Component implements \yii\base\Initable
|
||||
*/
|
||||
abstract public function exportMessages($final);
|
||||
|
||||
/**
|
||||
* Initializes this component.
|
||||
* This method is invoked after the component is created and its property values are
|
||||
* initialized.
|
||||
*/
|
||||
public function init()
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* Processes the given log messages.
|
||||
* This method will filter the given messages with [[levels]] and [[categories]].
|
||||
|
||||
Reference in New Issue
Block a user