Overview

Namespaces

  • Alchemy
    • core
      • query
      • schema
    • dialect
    • engine
    • orm
    • tests
    • util
      • promise
  • PHP

Classes

  • ColumnRef
  • DDLQuery
  • Expression
  • Insert
  • Join
  • Predicate
  • Query
  • Scalar
  • TableRef

Interfaces

  • IQuery
  • IQueryFragment
  • IQueryValue
  • Overview
  • Namespace
  • Class
  • Tree
 1: <?php
 2: 
 3: namespace Alchemy\core\query;
 4: 
 5: 
 6: /**
 7:  * Interface for query fragments
 8:  */
 9: interface IQueryFragment {
10: 
11:     /**
12:      * Recursively get all scalar parameters used by this query
13:      *
14:      * @return array(Scalar, Scalar, ...)
15:      */
16:     public function parameters();
17: }
18: 
API documentation generated by ApiGen 2.8.0