Code Duplication    Length = 2-2 lines in 5 locations

includes/libraries/Pdf/Tfpdf/font/courier.php 1 location

@@ 6-7 (lines=2) @@
3
$name = 'Courier';
4
$up = -100;
5
$ut = 50;
6
for ($i = 0; $i <= 255; $i++)
7
    $cw[chr($i)] = 600;
8
?>
9

includes/libraries/Pdf/Tfpdf/font/courierb.php 1 location

@@ 6-7 (lines=2) @@
3
$name = 'Courier-Bold';
4
$up = -100;
5
$ut = 50;
6
for ($i = 0; $i <= 255; $i++) {
7
	$cw[chr($i)] = 600;
8
}
9
?>
10

includes/libraries/Pdf/Tfpdf/font/courierbi.php 1 location

@@ 6-7 (lines=2) @@
3
$name = 'Courier-BoldOblique';
4
$up = -100;
5
$ut = 50;
6
for ($i = 0; $i <= 255; $i++) {
7
	$cw[chr($i)] = 600;
8
}
9
?>
10

includes/libraries/Pdf/Tfpdf/font/courieri.php 1 location

@@ 6-7 (lines=2) @@
3
$name = 'Courier-Oblique';
4
$up = -100;
5
$ut = 50;
6
for ($i = 0; $i <= 255; $i++)
7
    $cw[chr($i)] = 600;
8
?>
9

includes/libraries/Pdf/Tfpdf/tfpdf.class.php 1 location

@@ 1963-1964 (lines=2) @@
1960
            $this->_newobj();
1961
            $cw = &$font['cw'];
1962
            $s = '[';
1963
            for ($i = 32; $i <= 255; $i++) {
1964
                            $s .= $cw[chr($i)].' ';
1965
            }
1966
            $this->_out($s.']');
1967
            $this->_out('endobj');