Advertisement
Guest User

Untitled

a guest
Feb 1st, 2015
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.36 KB | None | 0 0
  1. interface QueryCompiler {
  2.  
  3.     /**
  4.      * @since 2.2
  5.      *
  6.      * @param Description $description
  7.      *
  8.      * @return boolean
  9.      */
  10.     public function canCompileDescription( Description $description );
  11.  
  12.     /**
  13.      * @since 2.2
  14.      *
  15.      * @param Description $description
  16.      *
  17.      * @return SqlQueryPart
  18.      */
  19.     public function compileDescription( Description $description );
  20.  
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement