Skip to content

Commit

Permalink
release version 2.0.16
Browse files Browse the repository at this point in the history
  • Loading branch information
samdark committed Mar 21, 2024
1 parent b42dbbe commit bac8721
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 15 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Yii Framework 2 sphinx extension Change Log
===========================================

2.0.16 under development
------------------------
2.0.16 March 21, 2024
---------------------

- Enh #144: Add `UINT_SET` attribute type support (@vjik)

Expand Down
4 changes: 2 additions & 2 deletions src/ActiveFixture.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
*
* Note: only runtime indexes are supported.
*
* @property IndexSchema $indexSchema The schema information of the database table associated with this
* fixture. This property is read-only.
* @property-read IndexSchema $indexSchema The schema information of the database table associated with this
* fixture.
*
* @author Paul Klimov <[email protected]>
* @since 2.0.4
Expand Down
4 changes: 2 additions & 2 deletions src/Connection.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@
* @method \yii\sphinx\Schema getSchema() The schema information for this Sphinx connection
* @method \yii\sphinx\QueryBuilder getQueryBuilder() the query builder for this Sphinx connection
*
* @property string $lastInsertID The row ID of the last row inserted, or the last value retrieved from the
* sequence object. This property is read-only.
* @property-read string $lastInsertID The row ID of the last row inserted, or the last value retrieved from
* the sequence object.
*
* @author Paul Klimov <[email protected]>
* @since 2.0
Expand Down
4 changes: 2 additions & 2 deletions src/IndexSchema.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
/**
* IndexSchema represents the metadata of a Sphinx index.
*
* @property array $columnNames List of column names. This property is read-only.
* @property bool $isRuntime Whether this index is a real-time index. This property is write-only.
* @property-read array $columnNames List of column names.
* @property-write bool $isRuntime Whether this index is a real-time index.
*
* @author Paul Klimov <[email protected]>
* @since 2.0
Expand Down
2 changes: 1 addition & 1 deletion src/QueryBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* QueryBuilder can also be used to build SQL statements such as INSERT, REPLACE, UPDATE, DELETE,
* from a [[Query]] object.
*
* @property MatchBuilder $matchBuilder Match builder. This property is read-only.
* @property-read MatchBuilder $matchBuilder Match builder.
*
* @author Paul Klimov <[email protected]>
* @since 2.0
Expand Down
11 changes: 5 additions & 6 deletions src/Schema.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,11 @@
/**
* Schema represents the Sphinx schema information.
*
* @property string[] $indexNames All index names in the Sphinx. This property is read-only.
* @property IndexSchema[] $indexSchemas The metadata for all indexes in the Sphinx. Each array element is an
* instance of [[IndexSchema]] or its child class. This property is read-only.
* @property array $indexTypes All index types in the Sphinx in format: index name => index type. This
* property is read-only.
* @property QueryBuilder $queryBuilder The query builder for this connection. This property is read-only.
* @property-read string[] $indexNames All index names in the Sphinx.
* @property-read IndexSchema[] $indexSchemas The metadata for all indexes in the Sphinx. Each array element
* is an instance of [[IndexSchema]] or its child class.
* @property-read array $indexTypes All index types in the Sphinx in format: index name => index type.
* @property-read QueryBuilder $queryBuilder The query builder for this connection.
*
* @author Paul Klimov <[email protected]>
* @since 2.0
Expand Down

0 comments on commit bac8721

Please sign in to comment.