Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extend docblock about same and equals regarding their type safety #60

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/Codeception/Verify/Verifiers/VerifyMixed.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,12 @@ public function empty(string $message = ''): self
}

/**
* Verifies that two variables are equal.
* Verifies that two variables are equal without comparing the type.
*
* @param $expected
* @param string $message
* @return self
* @see same for comparing values and their types (type-safe comparison)
*/
public function equals($expected, string $message = ''): self
{
Expand Down Expand Up @@ -630,6 +631,7 @@ public function null(string $message = ''): self
* @param $expected
* @param string $message
* @return self
* @see equals for comparing variables in a non-type-safe manner
*/
public function same($expected, string $message = ''): self
{
Expand Down
Loading