Code Duplication    Length = 1-1 lines in 2 locations

plugins/actions/twitter/twitter.php 2 locations

@@ 1301-1301 (lines=1) @@
1298
        $allowedModes = array('public', 'private');
1299
1300
        // validate
1301
        if ($mode != null && !in_array($mode, $allowedModes)) throw new TwitterException('Invalid mode (), possible values are: ' . implode($allowedModes) . '.');
1302
1303
        // build parameters
1304
        $parameters['name'] = (string)$name;
@@ 1362-1362 (lines=1) @@
1359
        $allowedModes = array('public', 'private');
1360
1361
        // validate
1362
        if ($mode != null && !in_array($mode, $allowedModes)) throw new TwitterException('Invalid mode (), possible values are: ' . implode($allowedModes) . '.');
1363
1364
        // build parameters
1365
        if ($name != null) $parameters['name'] = (string)$name;