Video::setSourceUrl()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
1
<?php
2
3
/*
4
 * This file is part of the XabbuhPandaClient package.
5
 *
6
 * (c) Christian Flothmann <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace Xabbuh\PandaClient\Model;
13
14
/**
15
 * Representation of a video as it is returned by the Panda encoding service.
16
 *
17
 * @author Christian Flothmann <[email protected]>
18
 */
19
class Video extends AbstractMedium
20
{
21
    private $originalFilename;
22
23
    private $sourceUrl;
24
25
    private $payload;
26
27
    public function getOriginalFilename()
28
    {
29
        return $this->originalFilename;
30
    }
31
32
    public function setOriginalFilename($originalFilename)
33
    {
34
        $this->originalFilename = $originalFilename;
35
    }
36
37
    public function getSourceUrl()
38
    {
39
        return $this->sourceUrl;
40
    }
41
42
    public function setSourceUrl($sourceUrl)
43
    {
44
        $this->sourceUrl = $sourceUrl;
45
    }
46
47
    public function getPayload()
48
    {
49
        return $this->payload;
50
    }
51
52
    public function setPayload($payload)
53
    {
54
        $this->payload = $payload;
55
    }
56
}
57