Skip to content

Commit bac8721

Browse files
committed
release version 2.0.16
1 parent b42dbbe commit bac8721

File tree

6 files changed

+14
-15
lines changed

6 files changed

+14
-15
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Yii Framework 2 sphinx extension Change Log
22
===========================================
33

4-
2.0.16 under development
5-
------------------------
4+
2.0.16 March 21, 2024
5+
---------------------
66

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

src/ActiveFixture.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
*
2525
* Note: only runtime indexes are supported.
2626
*
27-
* @property IndexSchema $indexSchema The schema information of the database table associated with this
28-
* fixture. This property is read-only.
27+
* @property-read IndexSchema $indexSchema The schema information of the database table associated with this
28+
* fixture.
2929
*
3030
* @author Paul Klimov <klimov.paul@gmail.com>
3131
* @since 2.0.4

src/Connection.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@
5454
* @method \yii\sphinx\Schema getSchema() The schema information for this Sphinx connection
5555
* @method \yii\sphinx\QueryBuilder getQueryBuilder() the query builder for this Sphinx connection
5656
*
57-
* @property string $lastInsertID The row ID of the last row inserted, or the last value retrieved from the
58-
* sequence object. This property is read-only.
57+
* @property-read string $lastInsertID The row ID of the last row inserted, or the last value retrieved from
58+
* the sequence object.
5959
*
6060
* @author Paul Klimov <klimov.paul@gmail.com>
6161
* @since 2.0

src/IndexSchema.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
/**
1313
* IndexSchema represents the metadata of a Sphinx index.
1414
*
15-
* @property array $columnNames List of column names. This property is read-only.
16-
* @property bool $isRuntime Whether this index is a real-time index. This property is write-only.
15+
* @property-read array $columnNames List of column names.
16+
* @property-write bool $isRuntime Whether this index is a real-time index.
1717
*
1818
* @author Paul Klimov <klimov.paul@gmail.com>
1919
* @since 2.0

src/QueryBuilder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* QueryBuilder can also be used to build SQL statements such as INSERT, REPLACE, UPDATE, DELETE,
2121
* from a [[Query]] object.
2222
*
23-
* @property MatchBuilder $matchBuilder Match builder. This property is read-only.
23+
* @property-read MatchBuilder $matchBuilder Match builder.
2424
*
2525
* @author Paul Klimov <klimov.paul@gmail.com>
2626
* @since 2.0

src/Schema.php

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,11 @@
1616
/**
1717
* Schema represents the Sphinx schema information.
1818
*
19-
* @property string[] $indexNames All index names in the Sphinx. This property is read-only.
20-
* @property IndexSchema[] $indexSchemas The metadata for all indexes in the Sphinx. Each array element is an
21-
* instance of [[IndexSchema]] or its child class. This property is read-only.
22-
* @property array $indexTypes All index types in the Sphinx in format: index name => index type. This
23-
* property is read-only.
24-
* @property QueryBuilder $queryBuilder The query builder for this connection. This property is read-only.
19+
* @property-read string[] $indexNames All index names in the Sphinx.
20+
* @property-read IndexSchema[] $indexSchemas The metadata for all indexes in the Sphinx. Each array element
21+
* is an instance of [[IndexSchema]] or its child class.
22+
* @property-read array $indexTypes All index types in the Sphinx in format: index name => index type.
23+
* @property-read QueryBuilder $queryBuilder The query builder for this connection.
2524
*
2625
* @author Paul Klimov <klimov.paul@gmail.com>
2726
* @since 2.0

0 commit comments

Comments
 (0)