phorge/src/applications/repository/query/PhabricatorRepositoryPushLogQuery.php
phorge/src/applications/repository/query/PhabricatorRepositoryPushLogQuery.php
Changes
Changes
src/applications/repository/query/PhabricatorRepositoryPushLogQuery.php
Show First 20 Lines • Show All 76 Lines • ▼ Show 20 Lines | foreach ($logs as $key => $log) { | ||||
continue; | continue; | ||||
} | } | ||||
$log->attachPushEvent($event); | $log->attachPushEvent($event); | ||||
} | } | ||||
return $logs; | return $logs; | ||||
} | } | ||||
private function buildWhereClause(AphrontDatabaseConnection $conn_r) { | protected function buildWhereClause(AphrontDatabaseConnection $conn_r) { | ||||
$where = array(); | $where = array(); | ||||
if ($this->ids) { | if ($this->ids) { | ||||
$where[] = qsprintf( | $where[] = qsprintf( | ||||
$conn_r, | $conn_r, | ||||
'id IN (%Ld)', | 'id IN (%Ld)', | ||||
$this->ids); | $this->ids); | ||||
} | } | ||||
▲ Show 20 Lines • Show All 53 Lines • Show Last 20 Lines |