I have seen both of these syntaxes for adding constraints to an existing Fluent/Eloquent $query (such as when appending a constraint based on a conditional):
$query = $query->where( 'id','=',1 );
and
$query->where( 'id','=',1 );
Is there any practical difference between them?