Completed
Push — master ( 6a01b7...58ea00 )
by
unknown
22s queued 11s
created

SkosmosTurtleParser::parseTriples()   A

Complexity

Conditions 4
Paths 5

Size

Total Lines 39

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 4
nc 5
nop 0
dl 0
loc 39
rs 9.296
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