Exemplo n.º 1
0
 /**
  * Shares a request.
  *
  * @param ComSharesSharerRequest $request The share request
  *
  * @return bool Return whether the share was succesful or not
  */
 public function shareRequest(ComSharesSharerRequest $request)
 {
     $ret = false;
     if ($this->canShareRequest($request)) {
         $this->_session->postUpdate($request->object->body);
     }
 }