Hey @dcarbone ! First I wanted to thank for your quick support regarding #49 and #50 !
With this ticket I want to note that in PHP, you don't need to initiate class properties with NULL value, as it is already done by default when you declare those properties. So something like this is unnecessary:
public $fieldName = null;
Declaring already initializes them to a null value:
Hey @dcarbone ! First I wanted to thank for your quick support regarding #49 and #50 !
With this ticket I want to note that in PHP, you don't need to initiate class properties with NULL value, as it is already done by default when you declare those properties. So something like this is unnecessary:
public $fieldName = null;
Declaring already initializes them to a null value:
public $fieldName;
Thanks!