using old array constructor for older PHP support

This commit is contained in:
Michael Pretty 2017-03-16 17:38:18 -04:00
parent 980500c353
commit 1538eb9334
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ class WC_Data_Store {
* @return array
*/
public function __sleep() {
return [ 'object_type' ];
return array( 'object_type' );
}
/**