Example #1
0
 /**
  * Get current collaborators count
  *
  * @return int
  */
 public function getCurrentCollaboratorsCount()
 {
     if (!isset($this->properties[__METHOD__])) {
         $this->properties[__METHOD__] = $this->user->getCollaboratorsCount();
     }
     return $this->properties[__METHOD__];
 }