Moved attachment related services into their own namespaces

This commit is contained in:
Jan Böhmer 2019-10-19 23:29:51 +02:00
parent f5f581293a
commit c955a3a221
16 changed files with 33 additions and 33 deletions

View file

@ -34,7 +34,7 @@ namespace App\Services\Attachments;
use App\Entity\Attachments\Attachment;
use App\Entity\Parts\Part;
use App\Services\AttachmentHelper;
use App\Services\Attachments\AttachmentManager;
/**
* @package App\Services\Attachments
@ -43,7 +43,7 @@ class PartPreviewGenerator
{
protected $attachmentHelper;
public function __construct(AttachmentHelper $attachmentHelper)
public function __construct(AttachmentManager $attachmentHelper)
{
$this->attachmentHelper = $attachmentHelper;
}