Code Duplication    Length = 8-8 lines in 3 locations

sources/lib/Converter/ConverterClient.php 3 locations

@@ 74-81 (lines=8) @@
71
     * @return string
72
     * @see ConverterInterface
73
     */
74
    public function toPg($value, $type = null)
75
    {
76
        return $this->converter->toPg(
77
            $value,
78
            $type === null ? $this->getClientIdentifier() : $type,
79
            $this->getSession()
80
        );
81
    }
82
83
    /**
84
     * fromPg
@@ 93-100 (lines=8) @@
90
     * @return mixed
91
     * @see ConverterInterface
92
     */
93
    public function fromPg($value, $type = null)
94
    {
95
        return $this->converter->fromPg(
96
            $value,
97
            $type === null ? $this->getClientIdentifier() : $type,
98
            $this->getSession()
99
        );
100
    }
101
102
    /**
103
     * toPgStandardFormat
@@ 112-119 (lines=8) @@
109
     * @return string
110
     * @see ConverterInterface
111
     */
112
    public function toPgStandardFormat($value, $type = null)
113
    {
114
        return $this->converter->toPgStandardFormat(
115
            $value,
116
            $type === null ? $this->getClientIdentifier() : $type,
117
            $this->getSession()
118
        );
119
    }
120
121
    /**
122
     * getConverter