ArrayObjectTrait::getFlags()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 1 Features 1
Metric Value
c 1
b 1
f 1
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
/**
3
 * Copyright (c) 2014-2016 Ryan Parman.
4
 *
5
 * Permission is hereby granted, free of charge, to any person obtaining a copy
6
 * of this software and associated documentation files (the "Software"), to deal
7
 * in the Software without restriction, including without limitation the rights
8
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
 * copies of the Software, and to permit persons to whom the Software is
10
 * furnished to do so, subject to the following conditions:
11
 *
12
 * The above copyright notice and this permission notice shall be included in
13
 * all copies or substantial portions of the Software.
14
 *
15
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
 * THE SOFTWARE.
22
 *
23
 * http://opensource.org/licenses/MIT
24
 */
25
26
namespace Skyzyx\StrongTypes\Collection;
27
28
trait ArrayObjectTrait
29
{
30
    /**
31
     * @aliasof ArrayObject::asort()
32
     * @return void
33
     */
34
    public function asort()
35
    {
36
        $this->collection->asort();
0 ignored issues
show
Bug introduced by
The property collection does not exist. Did you maybe forget to declare it?

In PHP it is possible to write to properties without declaring them. For example, the following is perfectly valid PHP code:

class MyClass { }

$x = new MyClass();
$x->foo = true;

Generally, it is a good practice to explictly declare properties to avoid accidental typos and provide IDE auto-completion:

class MyClass {
    public $foo;
}

$x = new MyClass();
$x->foo = true;
Loading history...
37
    }
38
39
    /**
40
     * @aliasof ArrayObject::exchangeArray()
41
     * @return array
42
     */
43
    public function exchangeArray($input)
44
    {
45
        return $this->collection->exchangeArray($input);
46
    }
47
48
    /**
49
     * @aliasof ArrayObject::getArrayCopy()
50
     * @return array
51
     */
52
    public function getArrayCopy()
53
    {
54
        return $this->collection->getArrayCopy();
55
    }
56
57
    /**
58
     * @aliasof ArrayObject::getFlags()
59
     * @return integer
60
     */
61
    public function getFlags()
62
    {
63
        return $this->collection->getFlags();
64
    }
65
66
    /**
67
     * @aliasof ArrayObject::ksort()
68
     * @return void
69
     */
70
    public function ksort()
71
    {
72
        $this->collection->ksort();
73
    }
74
75
    /**
76
     * @aliasof ArrayObject::natcasesort()
77
     * @return void
78
     */
79
    public function natcasesort()
80
    {
81
        $this->collection->natcasesort();
82
    }
83
84
    /**
85
     * @aliasof ArrayObject::natsort()
86
     * @return void
87
     */
88
    public function natsort()
89
    {
90
        $this->collection->natsort();
91
    }
92
93
    /**
94
     * @aliasof ArrayObject::setFlags()
95
     * @return void
96
     */
97
    public function setFlags($flags)
98
    {
99
        $this->collection->setFlags($flags);
100
    }
101
102
    /**
103
     * @aliasof ArrayObject::setIteratorClass()
104
     * @return void
105
     */
106
    public function setIteratorClass($iterator)
107
    {
108
        $this->collection->setIteratorClass($iterator);
109
    }
110
111
    /**
112
     * @aliasof ArrayObject::uasort()
113
     * @return void
114
     */
115
    public function uasort(callable $callback)
116
    {
117
        $this->collection->uasort($callback);
118
    }
119
120
    /**
121
     * @aliasof ArrayObject::uksort()
122
     * @return void
123
     */
124
    public function uksort(callable $callback)
125
    {
126
        $this->collection->uksort($callback);
127
    }
128
}
129