WPDB_Mock.php 171 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 <?php class WPDB_Mock { var $prefix = 'wp_'; var $getResultReturnVal; public function get_results($sql) { return $this->getResultReturnVal; } }