Merge pull request #23185 from eileenmcnaughton/smarty_wiz
[civicrm-core.git] / CRM / ACL / DAO / ACL.php
index 224fdba98c23935a1a350d2072ba526cba1e46f7..2d72b764b766c0331655856fe92785a305e960f1 100644 (file)
@@ -6,7 +6,7 @@
  *
  * Generated from xml/schema/CRM/ACL/ACL.xml
  * DO NOT EDIT.  Generated by CRM_Core_CodeGen
- * (GenCodeChecksum:b7a575fdf29260fa003d73bd4d5942c5)
+ * (GenCodeChecksum:5245f10c478c4187d1fb420e76f2fd76)
  */
 
 /**
@@ -33,21 +33,27 @@ class CRM_ACL_DAO_ACL extends CRM_Core_DAO {
   /**
    * Unique table ID
    *
-   * @var int
+   * @var int|string|null
+   *   (SQL type: int unsigned)
+   *   Note that values will be retrieved from the database as a string.
    */
   public $id;
 
   /**
    * ACL Name.
    *
-   * @var string
+   * @var string|null
+   *   (SQL type: varchar(64))
+   *   Note that values will be retrieved from the database as a string.
    */
   public $name;
 
   /**
    * Is this ACL entry Allow  (0) or Deny (1) ?
    *
-   * @var bool
+   * @var bool|string
+   *   (SQL type: tinyint)
+   *   Note that values will be retrieved from the database as a string.
    */
   public $deny;
 
@@ -55,13 +61,17 @@ class CRM_ACL_DAO_ACL extends CRM_Core_DAO {
    * Table of the object possessing this ACL entry (Contact, Group, or ACL Group)
    *
    * @var string
+   *   (SQL type: varchar(64))
+   *   Note that values will be retrieved from the database as a string.
    */
   public $entity_table;
 
   /**
    * ID of the object possessing this ACL
    *
-   * @var int
+   * @var int|string|null
+   *   (SQL type: int unsigned)
+   *   Note that values will be retrieved from the database as a string.
    */
   public $entity_id;
 
@@ -69,41 +79,53 @@ class CRM_ACL_DAO_ACL extends CRM_Core_DAO {
    * What operation does this ACL entry control?
    *
    * @var string
+   *   (SQL type: varchar(8))
+   *   Note that values will be retrieved from the database as a string.
    */
   public $operation;
 
   /**
    * The table of the object controlled by this ACL entry
    *
-   * @var string
+   * @var string|null
+   *   (SQL type: varchar(64))
+   *   Note that values will be retrieved from the database as a string.
    */
   public $object_table;
 
   /**
    * The ID of the object controlled by this ACL entry
    *
-   * @var int
+   * @var int|string|null
+   *   (SQL type: int unsigned)
+   *   Note that values will be retrieved from the database as a string.
    */
   public $object_id;
 
   /**
    * If this is a grant/revoke entry, what table are we granting?
    *
-   * @var string
+   * @var string|null
+   *   (SQL type: varchar(64))
+   *   Note that values will be retrieved from the database as a string.
    */
   public $acl_table;
 
   /**
    * ID of the ACL or ACL group being granted/revoked
    *
-   * @var int
+   * @var int|string|null
+   *   (SQL type: int unsigned)
+   *   Note that values will be retrieved from the database as a string.
    */
   public $acl_id;
 
   /**
    * Is this property active?
    *
-   * @var bool
+   * @var bool|string|null
+   *   (SQL type: tinyint)
+   *   Note that values will be retrieved from the database as a string.
    */
   public $is_active;