Current Path : /home/lentoinv/lentoria.com/vendor/ankitpokhrel/tus-php/src/Events/ |
Current File : //home/lentoinv/lentoria.com/vendor/ankitpokhrel/tus-php/src/Events/UploadCreated.php |
<?php namespace TusPhp\Events; use TusPhp\File; use TusPhp\Request; use TusPhp\Response; class UploadCreated extends TusEvent { /** @var string */ public const NAME = 'tus-server.upload.created'; /** * UploadCreatedEvent constructor. * * @param File $file * @param Request $request * @param Response $response */ public function __construct(File $file, Request $request, Response $response) { $this->file = $file; $this->request = $request; $this->response = $response; } }