for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Crummy\Phlack\Message\Collection;
use Crummy\Phlack\Message\AttachmentInterface;
class AttachmentCollection extends EncodableCollection
{
/**
* @param $value
*
* @return bool
*/
public function acceptsType($value)
return $value instanceof AttachmentInterface;
}