for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Blackmine\Repository;
use Blackmine\Model\Issue\Attachment;
class Attachments extends AbstractRepository
{
public function getModelClass(): string
return Attachment::class;
}