for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Webmozart\Assert\StaticAnalysis\AssertSame;
use Webmozart\Assert\Assert;
class A
{
}
/** @param mixed $value */
function consume($value) : A
Assert::same($value, new A());
return $value;