Code Duplication    Length = 10-10 lines in 2 locations

src/Model/PropertyAnnotations.php 2 locations

@@ 88-97 (lines=10) @@
85
        return $this->propIgnore;
86
    }
87
88
    public function getPropAttributeOf()
89
    {
90
        if (!$this->propAttributeOf) {
91
            $this->propAttributeOf = "";
92
            if (!$this->classAnnotation->getClassIsRDF()) {
93
                $this->propAttributeOf = $this->getAnnotations("isattributeof", "");
94
            }
95
        }
96
        return $this->propAttributeOf;
97
    }
98
99
    public function getPropIsBlankNode()
100
    {
@@ 99-108 (lines=10) @@
96
        return $this->propAttributeOf;
97
    }
98
99
    public function getPropIsBlankNode()
100
    {
101
        if (!$this->propIsBlankNode) {
102
            $this->propIsBlankNode = "";
103
            if ($this->classAnnotation->getClassIsRDF()) {
104
                $this->propIsBlankNode = $this->getAnnotations("isblanknode", "");
105
            }
106
        }
107
        return $this->propIsBlankNode;
108
    }
109
110
    public function getPropIsResourceUri()
111
    {