Ground Sunlight

Windowsで作る - PHPプログラミングの開発環境

ユーザ用ツール

サイト用ツール


psr:psr11

差分

このページの2つのバージョン間の差分を表示します。

この比較画面にリンクする

両方とも前のリビジョン 前のリビジョン
次のリビジョン
前のリビジョン
psr:psr11 [2020/06/24 10:32]
y2sunlight [2. パッケージ]
psr:psr11 [2020/09/01 11:53] (現在)
tanaka [PSR-11: Container interface]
行 3: 行 3:
  --- //[[http://www.y2sunlight.com|y2sunlight]] 2020-05-25//  --- //[[http://www.y2sunlight.com|y2sunlight]] 2020-05-25//
  
-本章は、若干の補足を加筆してはいるものの単に[[https://www.php-fig.org/psr/|PSRのサイト]]を翻訳したものに過ぎません。英語が堪能な方は原文をご参照下さい。翻訳に当たっては、基本的に機械翻訳を使い、理解できない部分は独断で意訳しております。拙い訳では御座いますが恥を忍んで投稿しておりますので、ご指摘など御座いましたらコメントを頂ければ幸いです。+本章は、若干の補足を加筆してはいるものの単に[[https://www.php-fig.org/psr/|PSRのサイト]]を日本語に翻訳したものに過ぎません。英語が堪能な方は原文をご参照下さい。翻訳に当たっては、基本的に機械翻訳を使い、理解できない部分は独断で意訳しております。拙い訳では御座いますが恥を忍んで投稿しておりますので、ご指摘など御座いましたらコメントを頂ければ幸いです。 
 + 
 +関連記事
  
-==== 目次 ==== 
   * [[psr:top|PSR - PHP標準勧告]]   * [[psr:top|PSR - PHP標準勧告]]
   * [[psr:psr1|PSR-1: Basic Coding Standard - 基本コーディング規約]]   * [[psr:psr1|PSR-1: Basic Coding Standard - 基本コーディング規約]]
行 14: 行 15:
   * [[psr:psr7|PSR-7: HTTP Message Interface - HTTPメッセージインターフェイス]]    * [[psr:psr7|PSR-7: HTTP Message Interface - HTTPメッセージインターフェイス]] 
   * PSR-11: Container Interface - コンテナインターフェイス   * PSR-11: Container Interface - コンテナインターフェイス
-  * [[psr:psr12|PSR-12: Extended Coding Style Guide - 拡張コーディングスタイルガイド]] +  * [[psr:psr12|PSR-12: Extended Coding Style - 拡張コーディングスタイル]] 
   * [[psr:psr13|PSR-13: Link definition interfaces - リンク定義インターフェース]]   * [[psr:psr13|PSR-13: Link definition interfaces - リンク定義インターフェース]]
   * [[psr:psr14|PSR-14: Event Dispatcher - イベントディスパッチャー]]    * [[psr:psr14|PSR-14: Event Dispatcher - イベントディスパッチャー]] 
-  * [[psr:psr15|PSR-15: HTTP Handlers - HTTPハンドラー]] +  * [[psr:psr15|PSR-15: HTTP Server Request Handlers - HTTPサーバーリクエストハンドラー]]  
 +  * [[psr:psr16|PSR-16: Common Interface for Caching Libraries - キャッシングライブラリのための共通インターフェース]]  
 +  * [[psr:psr17|PSR-17: HTTP Factories - HTTPファクトリー]]  
 +  * [[psr:psr18|PSR-18: HTTP Client - HTTPクライアント]]  
 +  * [[psr:psr19|PSR-19: PHPDoc tags(Draft) - PHPDocタグ]] 
  
 ----- -----
行 83: 行 88:
 PSRコンテナーの実装を提供するパッケージは、''psr/container-implementation'' ''1.0.0'' を提供することを宣言する必要があります。 PSRコンテナーの実装を提供するパッケージは、''psr/container-implementation'' ''1.0.0'' を提供することを宣言する必要があります。
  
-実装が必要なプロジェクトでは、''psr/container-implementation'' ''1.0.0'' を ''require'' する必要があります。+実装が必要なプロジェクトでは、''psr/container-implementation'' ''1.0.0'' を 要求する必要があります。
  
 \\ \\
行 105: 行 110:
      * 識別子によってコンテナのエントリを検索して返します。      * 識別子によってコンテナのエントリを検索して返します。
      *      *
-     * @param string $id Identifier of the entry to look for. +     * @param string $id 検索するエントリの識別子
-     *          検索するエントリの識別子+
      *      *
-     * @throws NotFoundExceptionInterface  No entry was found for **this** identifier. +     * @throws NotFoundExceptionInterface  この識別子のエントリが見つかりませんでした 
-     *                   この識別子のエントリが見つかりませんでした +     * @throws ContainerExceptionInterface エントリの取得中にエラーが発生しました
-     * @throws ContainerExceptionInterface Error while retrieving the entry. +
-     *                   エントリの取得中にエラーが発生しました+
      *      *
-     * @return mixed Entry. +     * @return mixed エントリ
-                   エントリ+
      */      */
     public function get($id);     public function get($id);
行 121: 行 122:
      * Returns true if the container can return an entry for the given identifier.      * Returns true if the container can return an entry for the given identifier.
      * Returns false otherwise.      * Returns false otherwise.
 +     
      * コンテナが指定された識別子のエントリを返すことができる場合はtrueを返します。      * コンテナが指定された識別子のエントリを返すことができる場合はtrueを返します。
      * それ以外の場合はfalseを返します。      * それ以外の場合はfalseを返します。
行 126: 行 128:
      * `has($id)` returning true does not mean that `get($id)` will not throw an exception.      * `has($id)` returning true does not mean that `get($id)` will not throw an exception.
      * It does however mean that `get($id)` will not throw a `NotFoundExceptionInterface`.      * It does however mean that `get($id)` will not throw a `NotFoundExceptionInterface`.
 +     
      * has($id)がtrueを返すことは、get($id)が例外をスローしないことを意味しません。      * has($id)がtrueを返すことは、get($id)が例外をスローしないことを意味しません。
      * ただし、get($id)はNotFoundExceptionInterfaceをスローしないことは意味します。      * ただし、get($id)はNotFoundExceptionInterfaceをスローしないことは意味します。
      *      *
-     * @param string $id Identifier of the entry to look for. +     * @param string $id 検索するエントリの識別子
-                       検索するエントリの識別子+
      *      *
      * @return bool      * @return bool
行 148: 行 150:
 /** /**
  * Base interface representing a generic exception in a container.  * Base interface representing a generic exception in a container.
- * コンテナの一般的な例外を表す基本インターフェース+ * コンテナの一般的な例外を表す基本インターフェース
  */  */
 interface ContainerExceptionInterface interface ContainerExceptionInterface
行 165: 行 167:
 /** /**
  * No entry was found in the container.  * No entry was found in the container.
- * コンテナにエントリが見つかりませんでした+ * コンテナにエントリが見つかりませんでした
  */  */
 interface NotFoundExceptionInterface extends ContainerExceptionInterface interface NotFoundExceptionInterface extends ContainerExceptionInterface
psr/psr11.1592962369.txt.gz · 最終更新: 2020/06/24 10:32 by y2sunlight