/** * * @param string $name * @param Image $icon */ public function __construct($name = null, $icon = null) { parent::__construct(); $this->setName($name); $this->setIcon($icon); }
public function __construct($title) { parent::__construct(); $this->title = $title; }
public function __construct($title, Image $icon) { parent::__construct(); $this->title = $title; $this->icon = $icon; }