2d83595637ced9b03e9edb81fcfc722a52683c33
[GitHub/WoltLab/WCF.git] /
1 <?php
2
3 /**
4 * @see https://github.com/laminas/laminas-progressbar for the canonical source repository
5 * @copyright https://github.com/laminas/laminas-progressbar/blob/master/COPYRIGHT.md
6 * @license https://github.com/laminas/laminas-progressbar/blob/master/LICENSE.md New BSD License
7 */
8
9 namespace Laminas\ProgressBar\Upload;
10
11 /**
12 * Interface for Upload Progress Handlers
13 */
14 interface UploadHandlerInterface
15 {
16 /**
17 * @param string $id
18 * @return array
19 */
20 public function getProgress($id);
21 }