Skip to content

Commit 3587dfb

Browse files
authored
Merge pull request #20096 from terabytesoftw/sync-to-2-branch
2 parents 0294cf4 + 637fc37 commit 3587dfb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+625
-418
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
fail-fast: false
2222
matrix:
2323
os: [ubuntu-latest]
24-
php: [8.1, 8.2]
24+
php: [8.1, 8.2, 8.3]
2525

2626
steps:
2727
- name: Generate french locale.

.github/workflows/ci-mssql.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ jobs:
2525
php:
2626
- 8.1
2727
- 8.2
28+
- 8.3
2829

2930
mssql:
3031
- server:2017-latest

.github/workflows/ci-mysql.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ jobs:
2424
php:
2525
- 8.1
2626
- 8.2
27+
- 8.3
2728

2829
mysql:
2930
- 5.7

.github/workflows/ci-pgsql.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ jobs:
2424
php:
2525
- 8.1
2626
- 8.2
27+
- 8.3
2728

2829
pgsql:
2930
- 10

.github/workflows/ci-sqlite.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ jobs:
2525
php:
2626
- 8.1
2727
- 8.2
28+
- 8.3
2829

2930
steps:
3031
- name: Checkout.

composer.lock

Lines changed: 84 additions & 37 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/guide-ja/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,7 @@ RESTful ウェブ・サービス
135135

136136
* [クイック・スタート](rest-quick-start.md)
137137
* [リソース](rest-resources.md)
138+
* [コレクションのフィルタリング](rest-filtering-collections.md)
138139
* [コントローラ](rest-controllers.md)
139140
* [ルーティング](rest-routing.md)
140141
* [レスポンス形式の設定](rest-response-formatting.md)

docs/guide-ja/caching-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ $data = $cache->getOrSet($key, function () use ($user_id) {
5757

5858
キャッシュ・コンポーネントは通常グローバルに設定しアクセスできるように
5959
[アプリケーション・コンポーネント](structure-application-components.md) として登録されます。
60-
以下のコードは、二台のキャッシュ・サーバを用いる [Memcached](https://memcached.org/) を使うように
60+
以下のコードは、二台のキャッシュ・サーバを用いる [memcached](https://memcached.org/) を使うように
6161
`cache` アプリケーション・コンポーネントを構成する方法を示すものです。
6262

6363
```php

docs/guide-ja/caching-fragment.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@ if ($this->beginCache($id)) {
2424

2525
[データ・キャッシュ](caching-data.md) と同様に、キャッシュされるコンテントを識別するためにユニークな `$id` が必要になります。
2626

27+
次のようにすると、フラグメント・キャッシュを削除することが出来ます。
28+
```php
29+
Yii::$app->cache->delete(['yii\widgets\FragmentCache', $id]);
30+
```
31+
2732

2833
## キャッシュのオプション <span id="caching-options"></span>
2934

docs/guide-ja/concept-behaviors.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
ビヘイビア
22
==========
33

4-
ビヘイビアは [[yii\base\Behavior]] またその子クラスのインスタンスです。ビヘイビアは
5-
[ミックスイン](https://ja.wikipedia.org/wiki/Mixin) としても知られ、既存の [[yii\base\Component|component]] クラスの
4+
ビヘイビアは [[yii\base\Behavior]] またその子クラスのインスタンスです。
5+
ビヘイビアは [ミックスイン](https://ja.wikipedia.org/wiki/Mixin) としても知られ、既存の [[yii\base\Component|component]] クラスの
66
機能を、クラスの継承を変更せずに拡張することができます。コンポーネントにビヘイビアをアタッチすると、その
77
コンポーネントにはビヘイビアのメソッドとプロパティが "注入" され、それらのメソッドとプロパティは、
88
コンポーネント・クラス自体に定義されているかのようにアクセスできるようになります。また、ビヘイビアは、

0 commit comments

Comments
 (0)