Mass cleanup of docblocks/code/comments
[civicrm-core.git] / tests / phpunit / CiviTest / AuthorizeNet.php
index 13bae28459de746a615d9c7e25470f4aa467cdb7..ada476fee03116460fbcd6515326f70b223b0909 100644 (file)
@@ -1,11 +1,14 @@
 <?php
+
+/**
+ * Class AuthorizeNet
+ */
 class AuthorizeNet extends PHPUnit_Framework_Testcase {
-  /*
-     * Helper function to create
-     * a payment processor of type Authorize.net
-     *
-     * @return $paymentProcessor id of created payment processor
-     */
+  /**
+   * Helper function to create
+   * a payment processor of type Authorize.net
+   * @return CRM_Financial_DAO_PaymentProcessor
+   */
   function create() {
 
     $paymentProcessor = new CRM_Financial_DAO_PaymentProcessor();
@@ -28,14 +31,14 @@ class AuthorizeNet extends PHPUnit_Framework_Testcase {
     return $paymentProcessor;
   }
 
-  /*
-     * Helper function to delete a PayPal Pro
-     * payment processor
-     * @param  int $id - id of the PayPal Pro payment processor
-     * to be deleted
-     * @return boolean true if payment processor deleted, false otherwise
-     *
-     */
+  /**
+   * Helper function to delete a PayPal Pro
+   * payment processor
+   * @param  int $id - id of the PayPal Pro payment processor
+   * to be deleted
+   * @return boolean true if payment processor deleted, false otherwise
+   *
+   */
   function delete($id) {
     $paymentProcessor = new CRM_Financial_DAO_PaymentProcessor();
     $paymentProcessor->id = $id;