Cake\Database\Query::innerJoin PHP Метод

innerJoin() публичный Метод

This is a shorthand method for building joins via join(). The arguments of this method are identical to the leftJoin() shorthand, please refer to that methods description for further details.
public innerJoin ( string | array $table, string | array | Cake\Database\ExpressionInterface $conditions = [], array $types = [] )
$table string | array The table to join with
$conditions string | array | Cake\Database\ExpressionInterface The conditions to use for joining.
$types array a list of types associated to the conditions used for converting values to the corresponding database representation.
    public function innerJoin($table, $conditions = [], $types = [])
    {
        return $this->join($this->_makeJoin($table, $conditions, 'INNER'), $types);
    }