Skip to content
Snippets Groups Projects
Commit 19514286 authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Qual: Checkstyle

parent 56f7196a
No related branches found
No related tags found
No related merge requests found
......@@ -64,8 +64,12 @@ $pdf = new TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8',
- To convert pfx certificate to pem: openssl pkcs12 -in tcpdf.pfx -out tcpdf.crt -nodes
*/
$pdf->SetProtection($permissions=array('copy'), $user_pass='aaa', $owner_pass=null, $mode=0, $pubkeys=null);
$permissions=array('copy');
$user_pass='aaa';
$owner_pass=null;
$mode=0;
$pubkeys=null;
$pdf->SetProtection($permissions, $user_pass, $owner_pass, $mode, $pubkeys);
// Example with public-key
// To open the document you need to install the private key (tcpdf.p12) on the Acrobat Reader. The password is: 1234
......
......@@ -230,6 +230,7 @@ class autoTranslator
}
/**
* getLineKey
*
* @param string $line Line found into file
* @return string Key
......@@ -241,6 +242,7 @@ class autoTranslator
}
/**
* getLineValue
*
* @param string $line Line found into file
* @return string Value
......@@ -252,6 +254,7 @@ class autoTranslator
}
/**
* getTranslationFilesArray
*
* @param string $lang Language code
* @return array Array
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment