I’d usually write this as:
$review = ( defined($model->test) ? 1 : '' );
where the parentheses are for clarity for other people reading the code.
I’d usually write this as:
$review = ( defined($model->test) ? 1 : '' );
where the parentheses are for clarity for other people reading the code.