Code Duplication    Length = 12-12 lines in 2 locations

component/Icon.php 2 locations

@@ 152-163 (lines=12) @@
149
     * @return self
150
     * @throws \yii\base\InvalidConfigException
151
     */
152
    public function rotate($value)
153
    {
154
        return $this->addCssClass(
155
            FA::$cssPrefix . '-rotate-' . $value,
156
            in_array((string)$value, [FA::ROTATE_90, FA::ROTATE_180, FA::ROTATE_270], true),
157
            sprintf(
158
                '%s - invalid value. Use one of the constants: %s.',
159
                'FA::rotate()',
160
                'FA::ROTATE_90, FA::ROTATE_180, FA::ROTATE_270'
161
            )
162
        );
163
    }
164
165
    /**
166
     * @param string $value
@@ 170-181 (lines=12) @@
167
     * @return self
168
     * @throws \yii\base\InvalidConfigException
169
     */
170
    public function flip($value)
171
    {
172
        return $this->addCssClass(
173
            FA::$cssPrefix . '-flip-' . $value,
174
            in_array((string)$value, [FA::FLIP_HORIZONTAL, FA::FLIP_VERTICAL], true),
175
            sprintf(
176
                '%s - invalid value. Use one of the constants: %s.',
177
                'FA::flip()',
178
                'FA::FLIP_HORIZONTAL, FA::FLIP_VERTICAL'
179
            )
180
        );
181
    }
182
183
    /**
184
     * @deprecated