Code Duplication    Length = 5-5 lines in 2 locations

lib/Phile/Model/AbstractModel.php 2 locations

@@ 88-92 (lines=5) @@
85
     */
86
    public function __call($name, $args)
87
    {
88
        if (strpos($name, 'get') !== false) {
89
            $name = substr($name, 3);
90
91
            return $this->get($name);
92
        }
93
        if (strpos($name, 'set') !== false) {
94
            $name = substr($name, 3);
95
@@ 93-97 (lines=5) @@
90
91
            return $this->get($name);
92
        }
93
        if (strpos($name, 'set') !== false) {
94
            $name = substr($name, 3);
95
96
            return $this->set($name, $args[0]);
97
        }
98
    }
99
100
    /**