EnvelopeCollection::getMeta()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace DevoraliveCachet\Result;
4
5
use JMS\Serializer\Annotation as JMS;
6
7
/**
8
 * Class EnvelopeCollection
9
 * @package DevoraliveCachet\Result
10
 */
11
abstract class EnvelopeCollection implements Envelope
12
{
13
14
    /**
15
     * @var Metadata
16
     * @JMS\Type("DevoraliveCachet\Result\Metadata")
17
     */
18
    private $meta;
19
20
    /**
21
     * Get the value of Meta
22
     *
23
     * @return Metadata
24
     */
25
    public function getMeta()
26
    {
27
        return $this->meta;
28
    }
29
30
    /**
31
     * Set the value of Meta
32
     *
33
     * @param Metadata meta
34
     *
35
     * @return self
36
     */
37
    public function setMeta(Metadata $meta)
38
    {
39
        $this->meta = $meta;
40
41
        return $this;
42
    }
43
}
44