Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion developer_manual/basics/storage/database.rst
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ To create a mapper, inherit from the mapper base class and call the parent const
public function authorNameCount($name) {
$qb = $this->db->getQueryBuilder();

$qb->selectAlias($qb->createFunction('COUNT(*)'), 'count')
$qb->select($qb->func()->count('*', 'count'))
->from('myapp_authors')
->where(
$qb->expr()->eq('name', $qb->createNamedParameter($name, IQueryBuilder::PARAM_STR))
Expand Down
Loading