Browse Source

Adding a small doc block for Entity class

Jose Lorenzo Rodriguez 12 years ago
parent
commit
ad54587ae8
1 changed files with 4 additions and 0 deletions
  1. 4 0
      Cake/ORM/Entity.php

+ 4 - 0
Cake/ORM/Entity.php

@@ -19,6 +19,10 @@ namespace Cake\ORM;
 use Cake\ORM\Table;
 use Cake\Utility\Inflector;
 
+/**
+ * An entity represents a single result row from a repository. It exposes the
+ * methods for retrieving and storing properties associated in this row.
+ */
 class Entity implements \ArrayAccess, \JsonSerializable {
 
 /**