Skip to content

Commit

Permalink
docs: udpate test docsblocks
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon Waldstein committed Dec 22, 2023
1 parent 3460688 commit 35981fa
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,17 @@
use Give\Tests\TestCase;
use Give\Tests\TestTraits\RefreshDatabase;

/**
* @unreleased
*/
class UpdateRevenueWhenDonationAmountUpdatedTest extends TestCase
{
use RefreshDatabase;

/**
* @unreleased
*/
public function testRevenueIsUpdatedWhenDonationIsUpdated()
public function testRevenueIsUpdatedWhenDonationIsUpdated(): void
{
$donation = Donation::factory()->create([
'status' => DonationStatus::COMPLETE(),
Expand All @@ -37,9 +40,7 @@ public function testRevenueIsUpdatedWhenDonationIsUpdated()
}

/**
* @param Donation $donation
*
* @return int
* @unreleased
*/
private function getRevenueAmountForDonation(Donation $donation)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class UpdateRevenueWhenDonationAmountUpdatedTest extends TestCase
* @unreleased updated action to accept Donation model
* @since 2.20.1
*/
public function testRevenueIsUpdatedWhenDonationIsUpdated()
public function testRevenueIsUpdatedWhenDonationIsUpdated(): void
{
$donation = Donation::factory()->create([
'status' => DonationStatus::COMPLETE(),
Expand All @@ -41,9 +41,7 @@ public function testRevenueIsUpdatedWhenDonationIsUpdated()
}

/**
* @param Donation $donation
*
* @return int
* @since 2.20.1
*/
private function getRevenueAmountForDonation(Donation $donation)
{
Expand Down

0 comments on commit 35981fa

Please sign in to comment.