Run php-cs-fixer for fixing coding standard issues (on ContentProxyTest)

This commit is contained in:
Tobi823 2018-09-23 23:42:05 +02:00
parent 83f1c3274f
commit 28cc645b93
1 changed files with 19 additions and 11 deletions

View File

@ -740,30 +740,38 @@ class ContentProxyTest extends TestCase
}
/**
* https://stackoverflow.com/a/18506801
* https://stackoverflow.com/a/18506801.
*
* @param $string
*
* @return string
*/
private function strToHex($string){
private function strToHex($string)
{
$hex = '';
for ($i=0; $i<strlen($string); $i++){
$ord = ord($string[$i]);
for ($i = 0; $i < \strlen($string); ++$i) {
$ord = \ord($string[$i]);
$hexCode = dechex($ord);
$hex .= substr('0' . $hexCode, -2);
}
return strToUpper($hex);
return strtoupper($hex);
}
/**
* https://stackoverflow.com/a/18506801
* https://stackoverflow.com/a/18506801.
*
* @param $hex
*
* @return string
*/
private function hexToStr($hex){
private function hexToStr($hex)
{
$string = '';
for ($i=0; $i < strlen($hex)-1; $i+=2){
$string .= chr(hexdec($hex[$i].$hex[$i+1]));
for ($i = 0; $i < \strlen($hex) - 1; $i += 2) {
$string .= \chr(hexdec($hex[$i] . $hex[$i + 1]));
}
return $string;
}