INFRA-132 - Move stray comments into docblocks
[civicrm-core.git] / CRM / Core / Smarty / Permissions.php
index 377c10898a41315ee78c34ca07c68696212fee96..9e2f35b0062933231cb6ab8839b7ed562f32b177 100644 (file)
@@ -1,9 +1,17 @@
 <?php
 
+/**
+ * Class CRM_Core_Smarty_Permissions
+ */
 class CRM_Core_Smarty_Permissions {
-  // non-static adapter for CRM_Core_Permission::check
-  function check($offset) {
+  /**
+   * non-static adapter for CRM_Core_Permission::check
+   * @param $offset
+   *
+   * @return bool
+   */
+  public function check($offset) {
     return CRM_Core_Permission::check($offset);
   }
 
-}
\ No newline at end of file
+}