Completed
Pull Request — master (#1128)
by Osma
02:31
created

SkosmosTurtleParser::unread()   A

Complexity

Conditions 3
Paths 4

Size

Total Lines 11

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 3
nc 4
nop 1
dl 0
loc 11
rs 9.9
c 0
b 0
f 0
1
<?php
2
3
class SkosmosTurtleParser extends EasyRdf\Parser\Turtle
4
{
5
    /**
6
     * Returns the namespace prefixes as an array of prefix => URI
7
     * @return array $namespaces
8
     */
9
    public function getNamespaces()
10
    {
11
        return $this->namespaces;
12
    }
13
14
}
15