Skip to content

Commit

Permalink
code formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
papac committed Jan 30, 2025
1 parent 34c18ad commit 48c5444
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion tests/Database/Query/ModelQueryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ public function test_save(string $name)

$pet = PetModelStub::first();
$pet->name = "Lofi";
$pet->save();
$pet->persiste();

$this->assertNotEquals($pet->name, 'Couli');
$this->assertInstanceOf(PetModelStub::class, $pet);
Expand Down
2 changes: 1 addition & 1 deletion tests/Queue/Stubs/ModelProducerStub.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public function __construct(

public function process(): void
{
$this->pet->save();
$this->pet->persiste();

file_put_contents(TESTING_RESOURCE_BASE_DIRECTORY . "/{$this->connection}_queue_pet_model_stub.txt", $this->pet->toJson());

Expand Down
22 changes: 11 additions & 11 deletions tests/Support/CollectionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public function test_get_instance()
}

/**
* @param $collection
* @param Collection $collection
* @depends test_get_instance
*/
public function test_sum(Collection $collection)
Expand All @@ -26,7 +26,7 @@ public function test_sum(Collection $collection)
}

/**
* @param $collection
* @param Collection $collection
* @depends test_get_instance
*/
public function test_max(Collection $collection)
Expand All @@ -35,7 +35,7 @@ public function test_max(Collection $collection)
}

/**
* @param $collection
* @param Collection $collection
* @depends test_get_instance
*/
public function test_min(Collection $collection)
Expand All @@ -44,7 +44,7 @@ public function test_min(Collection $collection)
}

/**
* @param $collection
* @param Collection $collection
* @depends test_get_instance
*/
public function test_count(Collection $collection)
Expand All @@ -53,7 +53,7 @@ public function test_count(Collection $collection)
}

/**
* @param $collection
* @param Collection $collection
* @depends test_get_instance
*/
public function test_pop(Collection $collection)
Expand All @@ -62,7 +62,7 @@ public function test_pop(Collection $collection)
}

/**
* @param $collection
* @param Collection $collection
* @depends test_get_instance
*/
public function test_shift(Collection $collection)
Expand All @@ -71,7 +71,7 @@ public function test_shift(Collection $collection)
}

/**
* @param $collection
* @param Collection $collection
* @depends test_get_instance
*/
public function test_reserve(Collection $collection)
Expand All @@ -80,7 +80,7 @@ public function test_reserve(Collection $collection)
}

/**
* @param $collection
* @param Collection $collection
* @depends test_get_instance
*/
public function test_generator(Collection $collection)
Expand All @@ -91,7 +91,7 @@ public function test_generator(Collection $collection)
}

/**
* @param $collection
* @param Collection $collection
* @depends test_get_instance
*/
public function test_json(Collection $collection)
Expand All @@ -100,7 +100,7 @@ public function test_json(Collection $collection)
}

/**
* @param $collection
* @param Collection $collection
* @depends test_get_instance
*/
public function test_excepts(Collection $collection)
Expand All @@ -109,7 +109,7 @@ public function test_excepts(Collection $collection)
}

/**
* @param $collection
* @param Collection $collection
* @depends test_get_instance
*/
public function test_push(Collection $collection)
Expand Down

0 comments on commit 48c5444

Please sign in to comment.