액션 - wu_before_search_models
Answer
The only difference is the return keyword.
The first line simply assigns the result of the query to $this->user.
The second line does the same assignment and returns that value from the method.
Use the first form when you only need to store the result in the object.
Use the second form when the method itself should return the result of the query.