public function __get($name) { switch ($name) { case 'videoStats': return $this->_videoStats; default: return parent::__get($name); } }
public function __get($name) { switch ($name) { case 'name': return $this->_name; default: return parent::__get($name); } }
public function __get($key) { switch ($key) { case 'width': return $this->_width; case 'height': return $this->_height; default: return parent::__get($key); } }