Skip to content

Commit

Permalink
#13373 - Class name in deprecation message
Browse files Browse the repository at this point in the history
Make deprecation message verbose.
  • Loading branch information
madbbb committed Jun 25, 2019
1 parent f165956 commit 5b13801
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Query.php
Expand Up @@ -591,7 +591,7 @@ public function from($tables = [], $overwrite = false)
public function join($tables = null, $types = [], $overwrite = false)
{
if ($tables === null) {
deprecationWarning('Using Query::join() to read state is deprecated. Use clause("join") instead.');
deprecationWarning('Using Query::join() to read state is deprecated. Use Query::clause("join") instead.');

return $this->_parts['join'];
}
Expand Down

0 comments on commit 5b13801

Please sign in to comment.