getDb(); $db->setQuery($db->getQuery(true) ->select('*') ->from($db->quoteName('#__patchtester_tests')) ->where($db->quoteName('applied') . ' = 1')); return $db->loadObjectList('pull_id'); } /** * Truncates the tests table * * @return void * * @since 2.0 */ public function truncateTable(): void { $this->getDb()->truncateTable('#__patchtester_tests'); } }