Overview

Namespaces

  • PHPixie
    • Auth
      • Context
        • Container
      • Domains
      • Providers
        • Builder
        • Provider
      • Repositories
        • Registry
        • Repository
    • AuthHTTP
      • Providers
    • AuthLogin
      • Providers
      • Repository
    • AuthORM
      • Repositories
        • Repository
        • Type
          • Login
    • AuthProcessors
      • Processor
    • BundleFramework
      • Configuration
        • FilesystemLocator
        • ORM
    • Bundles
      • Bundle
        • Provides
      • FilesystemLocators
      • Processors
    • Config
      • Formats
        • Format
      • Storages
        • Storage
          • Editable
        • Type
    • Database
      • Conditions
        • Builder
          • Container
          • Operators
        • Condition
          • Collection
          • Field
        • Logic
      • Connection
      • Driver
        • Mongo
          • Conditions
            • Builder
          • Parser
            • Conditions
          • Query
            • Type
        • PDO
          • Adapter
            • Mysql
              • Parser
            • Pgsql
              • Parser
            • Sqlite
              • Parser
          • Conditions
            • Builder
          • Query
            • Type
      • Exception
      • Parser
      • Query
        • Implementation
        • Type
          • Update
      • Type
        • Document
          • Conditions
            • Builder
            • Condition
              • Collection
                • Embedded
                  • Group
                  • Placeholder
          • Query
            • Implementation
        • SQL
          • Conditions
            • Builder
          • Parser
          • Query
            • Implementation
            • Type
      • Values
    • Debug
      • Logger
      • Tracer
        • Trace
    • DefaultBundle
      • Processor
        • HTTP
    • Filesystem
      • Locators
        • Locator
    • Framework
      • Extensions
        • Template
          • Extension
      • Processors
        • HTTP
          • Response
    • HTTP
      • Context
        • Container
        • Cookies
        • Session
      • Data
        • Headers
      • Messages
        • Message
          • Request
            • ServerRequest
        • Stream
        • UploadedFile
        • URI
      • Responses
    • HTTPProcessors
      • Parsers
        • Parser
      • Processor
        • Actions
        • Dispatcher
          • Builder
          • Registry
    • ORM
      • Conditions
        • Builder
        • Condition
          • Collection
            • RelatedTo
          • Field
          • In
      • Configs
      • Data
        • Diff
        • Type
        • Types
          • Document
            • Node
              • ArrayNode
      • Drivers
        • Driver
          • Mongo
          • PDO
          • SQL
      • Exception
      • Loaders
        • Loader
          • Embedded
          • Proxy
          • Repository
      • Mappers
        • Cascade
          • Mapper
        • Conditions
        • Preload
      • Maps
        • Map
          • Cascade
          • Property
      • Models
        • Model
          • Implementation
        • Type
          • Database
            • Implementation
          • Embedded
            • Implementation
      • Planners
        • Planner
          • In
            • Strategy
          • Pivot
            • Strategy
          • Query
            • Strategy
      • Plans
        • Plan
          • Query
      • Relationships
        • Relationship
          • Handler
            • Cascading
            • Mapping
          • Implementation
            • Preloader
              • Result
                • Multiple
            • Property
            • Side
          • Property
            • Entity
          • Side
            • Cascade
            • Property
          • Type
        • Type
          • Embeds
            • Preload
            • Property
            • Side
            • Type
              • Many
                • Preload
                • Property
                  • Entity
                • Side
              • One
                • Preload
                • Property
                  • Entity
                • Side
          • ManyToMany
            • Property
            • Side
          • OneTo
            • Preloader
            • Property
              • Entity
              • Query
            • Side
            • Type
              • Many
                • Preloader
                  • Property
                • Property
                  • Entity
                  • Query
                • Side
                • Value
                  • Preload
              • One
                • Preloader
                • Property
                • Side
      • Steps
        • Result
        • Step
          • Pivot
          • Query
            • Insert
              • Batch
                • Data
            • Result
          • Update
      • Values
        • Preload
          • Property
        • Update
      • Wrappers
        • Model
        • Type
          • Database
          • Embedded
    • Paginate
      • Loader
    • PaginateORM
      • Loader
    • Processors
      • Processor
        • Dispatcher
    • Route
      • Exception
      • Matcher
      • Resolvers
        • Resolver
          • Pattern
      • Translator
    • Security
      • Tokens
        • Storage
          • Database
    • Slice
      • Data
        • Slice
      • Type
        • ArrayData
        • Slice
    • Template
      • Extensions
        • Extension
      • Formats
      • Renderer
    • Test
  • Project
    • App
      • HTTPProcessors
    • Framework
  • Psr
    • Http
      • Message

Interfaces

  • Builder
  • Condition
  • Overview
  • Namespace
  • Class
  • Tree
  • Return

Interface Builder

PHPixie\ORM\Conditions\Builder implements PHPixie\Database\Conditions\Builder

Direct known implementers

PHPixie\ORM\Conditions\Builder\Container, PHPixie\ORM\Conditions\Builder\Proxy, PHPixie\ORM\Models\Type\Database\Query

Indirect known implementers

PHPixie\ORM\Drivers\Driver\Mongo\Query, PHPixie\ORM\Drivers\Driver\PDO\Query, PHPixie\ORM\Drivers\Driver\SQL\Query, PHPixie\ORM\Models\Type\Database\Implementation\Query, PHPixie\ORM\Wrappers\Type\Database\Query
Namespace: PHPixie\ORM\Conditions
Located at vendor/phpixie/orm/src/PHPixie/ORM/Conditions/Builder.php
Methods summary
public
# addWhereOperatorCondition( $logic, $negate, $field, $operator, $values )
public
# addWherePlaceholder( $logic = 'and', $negate = false, $allowEmpty = true )
public
# startWhereConditionGroup( $logic = 'and', $negate = false )
public
# addWhereCondition( $logic, $negate, $condition )
public
# buildWhereCondition( $logic, $negate, $args )
public
# where( )
public
# andWhere( )
public
# orWhere( )
public
# xorWhere( )
public
# whereNot( )
public
# andWhereNot( )
public
# orWhereNot( )
public
# xorWhereNot( )
public
# startWhereGroup( )
public
# startAndWhereGroup( )
public
# startOrWhereGroup( )
public
# startXorWhereGroup( )
public
# startWhereNotGroup( )
public
# startAndWhereNotGroup( )
public
# startOrWhereNotGroup( )
public
# startXorWhereNotGroup( )
public
# endWhereGroup( )
public
# addInCondition( $logic, $negate, $items )
public
# in( $items )
public
# andIn( $items )
public
# orIn( $items )
public
# xorIn( $items )
public
# notIn( $items )
public
# andNotIn( $items )
public
# orNotIn( $items )
public
# xorNotIn( $items )
public
# addRelatedToCondition( $logic, $negate, $relationship, $condition = null )
public
# startRelatedToConditionGroup( $relationship, $logic = 'and', $negate = false )
public
# relatedTo( $relationship, $items = null )
public
# andRelatedTo( $relationship, $items = null )
public
# orRelatedTo( $relationship, $items = null )
public
# xorRelatedTo( $relationship, $items = null )
public
# notRelatedTo( $relationship, $items = null )
public
# andNotRelatedTo( $relationship, $items = null )
public
# orNotRelatedTo( $relationship, $items = null )
public
# xorNotRelatedTo( $relationship, $items = null )
public
# startRelatedToGroup( $relationship )
public
# startAndRelatedToGroup( $relationship )
public
# startOrRelatedToGroup( $relationship )
public
# startXorRelatedToGroup( $relationship )
public
# startNotRelatedToGroup( $relationship )
public
# startAndNotRelatedToGroup( $relationship )
public
# startOrNotRelatedToGroup( $relationship )
public
# startXorNotRelatedToGroup( $relationship )
Methods inherited from PHPixie\Database\Conditions\Builder
__call(), _and(), _not(), _or(), _xor(), addCondition(), addOperatorCondition(), addPlaceholder(), andNot(), buildCondition(), endGroup(), orNot(), startAndGroup(), startAndNotGroup(), startConditionGroup(), startGroup(), startNotGroup(), startOrGroup(), startOrNotGroup(), startXorGroup(), startXorNotGroup(), xorNot()
PHPixie 3 API API documentation generated by ApiGen