BrilliantPlugins / salesforce-wordpress-to-lead

github home of http://wordpress.org/extend/plugins/salesforce-wordpress-to-lead/
16 stars 25 forks source link

Fixes deprecated constructors #75

Closed stodorovic closed 7 years ago

stodorovic commented 7 years ago

There are notices on PHP 7.0:

PHP Deprecated:  Methods with the same name as their class will not be constructors in a future version of PHP; Salesforce_Admin has a deprecated constructor in .../wp-content/plugins/salesforce-wordpress-to-lead/lib/salesforce_admin.class.php on line 2
PHP Deprecated:  Methods with the same name as their class will not be constructors in a future version of PHP; Salesforce_WordPress_to_Lead_Widgets has a deprecated constructor in .../wp-content/plugins/salesforce-wordpress-to-lead/lib/salesforce_widget.class.php on line 2

This PR replaces deprecated PHP constructors with __construct().