Remove "named" parameters when calling ImageSVG in class PDFRendere

This commit is contained in:
raphi 2015-04-17 09:50:53 +00:00
parent ad923b4d70
commit fdec9c4b9d
1 changed files with 10 additions and 10 deletions

View File

@ -26,20 +26,20 @@ class PDFRenderer
// Add the front svg
$pdf->ImageSVG(
$file = $front,
$x = 10,
$y = 15,
$w = '85',
$h = '55'
$front, // filename
10, // x
15, // y
'85', // width
'55' // height
);
// Add the back svg
$pdf->ImageSVG(
$file = $back,
$x = 95,
$y = 15,
$w = '85',
$h = '55'
$back, // filename
95, // x
15, // y
'85', // width
'55' // height
);