aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcash <cash.costello@gmail.com>2012-12-08 11:37:03 -0500
committercash <cash.costello@gmail.com>2012-12-08 11:37:03 -0500
commitf6cdb29d2ca93ac1a4aaafdf54fd2ed0e89291af (patch)
tree5bb7c09f3743b67e670ce9f8d22493e1832a9528
parentcb3eaf08d29e759af1d80a5a5b5f200213b42764 (diff)
downloadelgg-f6cdb29d2ca93ac1a4aaafdf54fd2ed0e89291af.tar.gz
elgg-f6cdb29d2ca93ac1a4aaafdf54fd2ed0e89291af.tar.bz2
Fixes #4806 make the create_<subtype>_entity() functions private
-rw-r--r--engine/lib/group.php1
-rw-r--r--engine/lib/objects.php1
-rw-r--r--engine/lib/sites.php1
-rw-r--r--engine/lib/users.php1
4 files changed, 4 insertions, 0 deletions
diff --git a/engine/lib/group.php b/engine/lib/group.php
index feb1f1e7f..852c08de9 100644
--- a/engine/lib/group.php
+++ b/engine/lib/group.php
@@ -33,6 +33,7 @@ function get_group_entity_as_row($guid) {
* @param string $description Description
*
* @return bool
+ * @access private
*/
function create_group_entity($guid, $name, $description) {
global $CONFIG;
diff --git a/engine/lib/objects.php b/engine/lib/objects.php
index f186c66cb..e5e8f67c4 100644
--- a/engine/lib/objects.php
+++ b/engine/lib/objects.php
@@ -31,6 +31,7 @@ function get_object_entity_as_row($guid) {
* @param string $description The object's description
*
* @return bool
+ * @access private
*/
function create_object_entity($guid, $title, $description) {
global $CONFIG;
diff --git a/engine/lib/sites.php b/engine/lib/sites.php
index 8b772668d..d9eb2d25e 100644
--- a/engine/lib/sites.php
+++ b/engine/lib/sites.php
@@ -58,6 +58,7 @@ function get_site_entity_as_row($guid) {
* @param string $url URL of the site
*
* @return bool
+ * @access private
*/
function create_site_entity($guid, $name, $description, $url) {
global $CONFIG;
diff --git a/engine/lib/users.php b/engine/lib/users.php
index 527eff3cd..95ef9d176 100644
--- a/engine/lib/users.php
+++ b/engine/lib/users.php
@@ -44,6 +44,7 @@ function get_user_entity_as_row($guid) {
* @param string $code A code
*
* @return bool
+ * @access private
*/
function create_user_entity($guid, $name, $username, $password, $salt, $email, $language, $code) {
global $CONFIG;