Clean up docblock
[civicrm-core.git] / CRM / Widget / Widget.php
index bc7d526f046a6924f867666bb547cf73708f51ae..29586c3658f18901f16886d393785deead19110f 100644 (file)
@@ -25,7 +25,7 @@ class CRM_Widget_Widget {
           ),
         ),
         'getEmbedCode' => array(
-          'description' => 'Gets embed code.  Perhaps overkill, but we can track dropoffs in this case. by # of people reqeusting emebed code / number of unique instances.',
+          'description' => 'Gets embed code.  Perhaps overkill, but we can track dropoffs in this case. by # of people requesting embed code / number of unique instances.',
           'access' => 'remote',
           'arguments' => array(
             'contributionPageID',
@@ -62,7 +62,7 @@ class CRM_Widget_Widget {
    * @param int $contributionPageID
    * @param string $widgetID
    *
-   * @return stdClass
+   * @return object
    */
   public function getContributionPageData($contributionPageID, $widgetID) {
     $config = CRM_Core_Config::singleton();
@@ -183,7 +183,8 @@ WHERE  id = %1";
    *
    * @param int $contributionPageID
    * @param string $widgetID
-   * @param string $format - either myspace or normal
+   * @param string $format
+   *   Either myspace or normal.
    *
    * @return string
    */
@@ -192,4 +193,5 @@ WHERE  id = %1";
     return "<embed>.......................</embed>" .
     print_r(func_get_args(), 1);
   }
+
 }