for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace EventStore\ValueObjects\Exception;
class InvalidNativeArgumentException extends \InvalidArgumentException
{
public function __construct($value, array $allowed_types)
$this->message = sprintf('Argument "%s" is invalid. Allowed types for argument are "%s".', $value, implode(', ', $allowed_types));
}