* @since 2.0 */ class ApplicationComponent extends Component { /** * @var string unique ID of this application component */ public $id; public function init() { parent::init(); if ($this->id === null) { $this->id = get_class($this); } } }