Code Duplication    Length = 8-8 lines in 3 locations

sources/lib/Converter/ConverterClient.php 3 locations

@@ 76-83 (lines=8) @@
73
     * @return string
74
     * @see ConverterInterface
75
     */
76
    public function toPg($value, $type = null)
77
    {
78
        return $this->converter->toPg(
79
            $value,
80
            $type === null ? $this->getClientIdentifier() : $type,
81
            $this->getSession()
82
        );
83
    }
84
85
    /**
86
     * fromPg
@@ 96-103 (lines=8) @@
93
     * @return mixed
94
     * @see ConverterInterface
95
     */
96
    public function fromPg($value, $type = null)
97
    {
98
        return $this->converter->fromPg(
99
            $value,
100
            $type === null ? $this->getClientIdentifier() : $type,
101
            $this->getSession()
102
        );
103
    }
104
105
    /**
106
     * toPgStandardFormat
@@ 116-123 (lines=8) @@
113
     * @return string
114
     * @see ConverterInterface
115
     */
116
    public function toPgStandardFormat($value, $type = null)
117
    {
118
        return $this->converter->toPgStandardFormat(
119
            $value,
120
            $type === null ? $this->getClientIdentifier() : $type,
121
            $this->getSession()
122
        );
123
    }
124
125
    /**
126
     * getConverter