* @license GNU General Public License, version 2 * @link http://addthis.com AddThis website */ class AddThisSharingButtonsResponsiveWidget extends AddThisWidget { /** * Bootstraps the widget for WordPress. It determines its tool settings * class name, and passes that string to its parent constructor. * * @return null */ public function __construct() { $toolClassName = self::getToolClass(__CLASS__); parent::__construct($toolClassName); } } }