BookStack\Http\Controllers\AttachmentController::__construct PHP Метод

__construct() публичный Метод

AttachmentController constructor.
public __construct ( AttachmentService $attachmentService, Attachment $attachment, PageRepo $pageRepo )
$attachmentService BookStack\Services\AttachmentService
$attachment BookStack\Attachment
$pageRepo BookStack\Repos\PageRepo
    public function __construct(AttachmentService $attachmentService, Attachment $attachment, PageRepo $pageRepo)
    {
        $this->attachmentService = $attachmentService;
        $this->attachment = $attachment;
        $this->pageRepo = $pageRepo;
        parent::__construct();
    }