]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
Run php-cs-fixer for fixing coding standard issues (on ContentProxyTest) 3725/head
authorTobi823 <Tobi823@users.noreply.github.com>
Sun, 23 Sep 2018 21:42:05 +0000 (23:42 +0200)
committerTobi823 <Tobi823@users.noreply.github.com>
Sun, 23 Sep 2018 21:42:05 +0000 (23:42 +0200)
tests/Wallabag/CoreBundle/Helper/ContentProxyTest.php

index 5f10f4826c276f630c847bb9bed29bee2f2e2b63..3f3c60d0fd943436f88759853b9ee5c950b554e2 100644 (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);
+            $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){
-        $string='';
-        for ($i=0; $i < strlen($hex)-1; $i+=2){
-            $string .= chr(hexdec($hex[$i].$hex[$i+1]));
+    private function hexToStr($hex)
+    {
+        $string = '';
+        for ($i = 0; $i < \strlen($hex) - 1; $i += 2) {
+            $string .= \chr(hexdec($hex[$i] . $hex[$i + 1]));
         }
+
         return $string;
     }