for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Spatie\MailableTest;
interface ArgumentValueProvider
{
/**
* @param string $mailableClass
* @param string $argumentName
* @param string $argumentType
* @param string|null $defaultValue
*
* @return mixed
*/
public function getValue(string $mailableClass, string $argumentName, string $argumentType = '', $defaultValue = null);
}