]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - classes/Message.php
Merge branch 'master' of evan@dev.controlyourself.ca:/var/www/trunk
[quix0rs-gnu-social.git] / classes / Message.php
index dc527fcb13774ebb0c52cd60844499ea728c5711..4806057b4ca1183fa6c752fde2e0ce03c4f20ee0 100644 (file)
@@ -22,16 +22,19 @@ class Message extends Memcached_DataObject
     public $source;                          // varchar(32)  
 
     /* Static get */
-    function staticGet($k,$v=NULL) { return Memcached_DataObject::staticGet('Message',$k,$v); }
+    function staticGet($k,$v=null)
+    { return Memcached_DataObject::staticGet('Message',$k,$v); }
 
     /* the code above is auto generated do not remove the tag below */
     ###END_AUTOCODE
     
-    function getFrom() {
+    function getFrom()
+    {
         return Profile::staticGet('id', $this->from_profile);
     }
     
-    function getTo() {
+    function getTo()
+    {
         return Profile::staticGet('id', $this->to_profile);
     }