mirror of
https://github.com/rr-/szurubooru.git
synced 2025-07-17 08:26:24 +00:00
14 lines
238 B
PHP
14 lines
238 B
PHP
<?php
|
|
class Model_Comment_QueryBuilder implements AbstractQueryBuilder
|
|
{
|
|
public static function build($dbQuery, $query)
|
|
{
|
|
$dbQuery
|
|
->from('comment')
|
|
->where('post_id')
|
|
->is()->not('NULL')
|
|
->orderBy('id')
|
|
->desc();
|
|
}
|
|
}
|