Automattic / wp-memcached

Memcached Object Cache for WordPress.
https://wordpress.org/plugins/memcached/
GNU General Public License v2.0
160 stars 55 forks source link

add constructor #3

Closed mihdan closed 8 years ago

ethitter commented 8 years ago

The class already includes a constructor, using the PHP 5 __construct() style: https://github.com/Automattic/wp-memcached/blob/b67ff421a3dba3acf55b0606ce1d149e5b0b30b5/object-cache.php#L490.

As PHP 7 deprecates the older constructor style added by this PR, we won't introduce it into the class. See http://php.net/manual/en/language.oop5.decon.php.