Failed Conditions
Pull Request — 2.8.x (#7919)
by
unknown
07:31
created

AssociationCacheEntry   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 38
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 2
eloc 6
c 0
b 0
f 0
dl 0
loc 38
ccs 0
cts 8
cp 0
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
A __set_state() 0 3 1
1
<?php
2
3
/*
4
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
5
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
6
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
7
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
8
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
9
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
10
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
11
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
12
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
13
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
14
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
15
 *
16
 * This software consists of voluntary contributions made by many individuals
17
 * and is licensed under the MIT license. For more information, see
18
 * <http://www.doctrine-project.org>.
19
 */
20
21
namespace Doctrine\ORM\Cache;
22
23
/**
24
 * Association cache entry
25
 *
26
 * @since   2.5
27
 * @author  Fabio B. Silva <[email protected]>
28
 */
29
class AssociationCacheEntry implements CacheEntry
30
{
31
    /**
32
     * READ-ONLY: Public only for performance reasons, it should be considered immutable.
33
     *
34
     * @var array The entity identifier
35
     */
36
    public $identifier;
37
38
    /**
39
     * READ-ONLY: Public only for performance reasons, it should be considered immutable.
40
     *
41
     * @var string The entity class name
42
     */
43
    public $class;
44
45
    /**
46
     * @param string $class      The entity class.
47
     * @param array  $identifier The entity identifier.
48
     */
49
    public function __construct($class, array $identifier)
50
    {
51
        $this->class       = $class;
52
        $this->identifier  = $identifier;
53
    }
54
55
    /**
56
     * Creates a new AssociationCacheEntry
57
     *
58
     * This method allow Doctrine\Common\Cache\PhpFileCache compatibility
59
     *
60
     * @param array $values array containing property values
61
     *
62
     * @return AssociationCacheEntry
63
     */
64
    public static function __set_state(array $values)
65
    {
66
        return new self($values['class'], $values['identifier']);
67
    }
68
}
69