ソースを参照

Merge pull request #6429 from antograssiot/clean-api

correct markup for API
Bryan Crowe 11 年 前
コミット
d4e0e0ab74
2 ファイル変更2 行追加2 行削除
  1. 1 1
      src/Datasource/EntityInterface.php
  2. 1 1
      src/Datasource/EntityTrait.php

+ 1 - 1
src/Datasource/EntityInterface.php

@@ -167,7 +167,7 @@ interface EntityInterface extends ArrayAccess, JsonSerializable
 
     /**
      * Stores whether or not a property value can be changed or set in this entity.
-     * The special property '*' can also be marked as accessible or protected, meaning
+     * The special property `*` can also be marked as accessible or protected, meaning
      * that any other property specified before will take its value. For example
      * `$entity->accessible('*', true)`  means that any property not specified already
      * will be accessible by default.

+ 1 - 1
src/Datasource/EntityTrait.php

@@ -754,7 +754,7 @@ trait EntityTrait
 
     /**
      * Stores whether or not a property value can be changed or set in this entity.
-     * The special property '*' can also be marked as accessible or protected, meaning
+     * The special property `*` can also be marked as accessible or protected, meaning
      * that any other property specified before will take its value. For example
      * `$entity->accessible('*', true)`  means that any property not specified already
      * will be accessible by default.