Completed
Pull Request — master (#152)
by Christopher
03:37
created

ODataExpandedResult::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 5
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 3
nc 1
nop 2
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: Barnso
5
 * Date: 16/08/2017
6
 * Time: 5:41 AM.
7
 */
8
namespace POData\ObjectModel;
9
10
class ODataExpandedResult
11
{
12
    /**
13
     * Term.
14
     *
15
     * @var ODataEntry
16
     */
17
    public $entry;
18
19
    /**
20
     * Scheme.
21
     *
22
     * @var ODataFeed
23
     */
24
    public $feed;
25
26
    /**
27
     * ODataExpandedResult constructor.
28
     *
29
     * @param \POData\ObjectModel\ODataEntry|null $entry
30
     * @param \POData\ObjectModel\ODataFeed|null  $feed
31
     */
32
    public function __construct(ODataEntry $entry = null, ODataFeed $feed = null)
33
    {
34
        $this->entry = $entry;
35
        $this->feed = $feed;
36
    }
37
}
38