Skip to content
Snippets Groups Projects
GetsResults.php 159 B
Newer Older
  • Learn to ignore specific revisions
  • Josh Pollock's avatar
    Josh Pollock committed
    <?php
    
    
    namespace calderawp\CalderaFormsQuery;
    
    interface GetsResults
    {
    	/**
    	 * @param $sql
    	 * @return \stdClass[]
    	 */
    	public function getResults($sql);
    }