ChessCom / Chess-Game

Based on Pear Games_Chess - represents a chess game as a php object
Other
42 stars 20 forks source link

Handle Deprecated: Automatic conversion of false to array is deprecated #44

Closed bojanpejic closed 2 years ago

bojanpejic commented 2 years ago

After ChessKid production server upgrade this Deprecated: Automatic conversion of false to array is deprecated warning came up in Sentry. Autovivification on false is going to be deprecated, details about it can be found here https://wiki.php.net/rfc/autovivification_false

$_lastMove property is initially set as false on very top of the class and the implemented fix just checks is the property an array, in case it is not, it sets/creates an array.

umpirsky commented 2 years ago

Thanks!