Completed
Push — master ( d5d4d8...907ac0 )
by angel
03:27
created
src/Hash.php 2 patches
Indentation   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -41,46 +41,46 @@
 block discarded – undo
41 41
     } //End constructor
42 42
 
43 43
     /**
44
-    * Hash a plain text password.
45
-    *
46
-    * @param string $password 	The plain text password to hash.
47
-    * @return string 			The hashed $password parameter.
48
-    */
44
+     * Hash a plain text password.
45
+     *
46
+     * @param string $password 	The plain text password to hash.
47
+     * @return string 			The hashed $password parameter.
48
+     */
49 49
     public function password($password)
50 50
     {
51 51
         return password_hash($password, $this->algo, ['cost' => $this->cost]);
52 52
     } //End password
53 53
 
54 54
     /**
55
-    * Check a password against it's hash.
56
-    *
57
-    * @param string $password 	Plain text password.
58
-    * @param string $hash 		Hashed password.
59
-    * @return bool 			 	True if they match, false otherwise.
60
-    */
55
+     * Check a password against it's hash.
56
+     *
57
+     * @param string $password 	Plain text password.
58
+     * @param string $hash 		Hashed password.
59
+     * @return bool 			 	True if they match, false otherwise.
60
+     */
61 61
     public function passwordCheck($password, $hash)
62 62
     {
63 63
         return password_verify($password, $hash);
64 64
     } //End password
65 65
 
66 66
     /**
67
-    * Use sha256 to hash an input string.
68
-    *
69
-    * @param string $input 	Plain text string to be hashed.
70
-    * @return string 		The hashed version of the $input string.
71
-    */
67
+     * Use sha256 to hash an input string.
68
+     *
69
+     * @param string $input 	Plain text string to be hashed.
70
+     * @return string 		The hashed version of the $input string.
71
+     */
72 72
     public function hash($input)
73 73
     {
74 74
         return hash('sha256', $input);
75 75
     } //End hash
76 76
 
77 77
     /**
78
-    * Check a hash against another.
79
-    *
80
-    * @param string $know 	 The hash we know is correct.
81
-    * @param string $unknown The hash we want to compare with it.
82
-    * @return bool 			 True if the hashed strings match, false otherwise.
83
-    */
78
+     * Check a hash against another.
79
+     *
80
+     * @param string $know 	 The hash we know is correct.
81
+     * @param string $unknown The hash we want to compare with it.
82
+     * @return bool 			 True if the hashed strings match, false otherwise.
83
+     */
84 84
     public function hashCheck($know, $unknown)
85 85
     {
86 86
         return hash_equals($know, $unknown);
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
     */
49 49
     public function password($password)
50 50
     {
51
-        return password_hash($password, $this->algo, ['cost' => $this->cost]);
51
+        return password_hash($password, $this->algo, [ 'cost' => $this->cost ]);
52 52
     } //End password
53 53
 
54 54
     /**
Please login to merge, or discard this patch.
src/Gravatar.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -39,14 +39,14 @@
 block discarded – undo
39 39
      * @param array $options Optional, additional key/value attributes to include
40 40
      * @return string Link to the user's gravatar image.
41 41
      */
42
-    public static function getAvatarUrl($email, $options = [])
42
+    public static function getAvatarUrl($email, $options = [ ])
43 43
     {
44
-        $size       = isset($options['s']) ? $options['s'] : 80;
45
-        $imageset   = isset($options['d']) ? $options['d'] : 'mm';
46
-        $rating     = isset($options['r']) ? $options['r'] : 'g';
47
-        $secure     = isset($options['secure']) ? self::HTTPS_URL : self::HTTP_URL;
44
+        $size       = isset($options[ 's' ]) ? $options[ 's' ] : 80;
45
+        $imageset   = isset($options[ 'd' ]) ? $options[ 'd' ] : 'mm';
46
+        $rating     = isset($options[ 'r' ]) ? $options[ 'r' ] : 'g';
47
+        $secure     = isset($options[ 'secure' ]) ? self::HTTPS_URL : self::HTTP_URL;
48 48
 
49
-        return $secure . md5(strtolower(trim($email))) . '?s=' . $size .'&d=' . $imageset . '&r=' . $rating;
49
+        return $secure . md5(strtolower(trim($email))) . '?s=' . $size . '&d=' . $imageset . '&r=' . $rating;
50 50
     }  
51 51
 }
52 52
 
Please login to merge, or discard this patch.
src/BofhExcuses.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -33,11 +33,11 @@
 block discarded – undo
33 33
     const HTTP_URL = 'http://bofhcalendar.com/api.php';    
34 34
 
35 35
     /**
36
-    * Retorna una excusa bofh
37
-    * @return string Retorna una excusa bofh
38
-    */
36
+     * Retorna una excusa bofh
37
+     * @return string Retorna una excusa bofh
38
+     */
39 39
     public static function bofhExcuses()
40 40
     {         
41
-         return file_get_contents(self::HTTP_URL);
41
+            return file_get_contents(self::HTTP_URL);
42 42
     } 
43 43
 }
Please login to merge, or discard this patch.
src/OpenWeatherMap.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,6 +41,6 @@
 block discarded – undo
41 41
      */
42 42
     public static function openWeatherMap($city, $api)
43 43
     {
44
-        return json_decode(file_get_contents(self::HTTPS_URL .''. $city .'&appid='. $api .'&units=metric'));
44
+        return json_decode(file_get_contents(self::HTTPS_URL . '' . $city . '&appid=' . $api . '&units=metric'));
45 45
     } 
46 46
 }
Please login to merge, or discard this patch.
src/SeoUrl.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -39,10 +39,10 @@  discard block
 block discarded – undo
39 39
     public static function removeAccent($str)
40 40
     {
41 41
         $first = [
42
-            'À','Á','Â','Ã','Ä','Å','Æ','Ç','È','É','Ê','Ë','Ì','Í','Î','Ï','Ð','Ñ','Ò','Ó','Ô','Õ','Ö','Ø','Ù','Ú','Û','Ü','Ý','ß','à','á','â','ã','ä','å','æ','ç','è','é','ê','ë','ì','í','î','ï','ñ','ò','ó','ô','õ','ö','ø','ù','ú','û','ü','ý','ÿ','Ā','ā','Ă','ă','Ą','ą','Ć','ć','Ĉ','ĉ','Ċ','ċ','Č','č','Ď','ď','Đ','đ','Ē','ē','Ĕ','ĕ','Ė','ė','Ę','ę','Ě','ě','Ĝ','ĝ','Ğ','ğ','Ġ','ġ','Ģ','ģ','Ĥ','ĥ','Ħ','ħ','Ĩ','ĩ','Ī','ī','Ĭ','ĭ','Į','į','İ','ı','IJ','ij','Ĵ','ĵ','Ķ','ķ','Ĺ','ĺ','Ļ','ļ','Ľ','ľ','Ŀ','ŀ','Ł','ł','Ń','ń','Ņ','ņ','Ň','ň','ʼn','Ō','ō','Ŏ','ŏ','Ő','ő','Œ','œ','Ŕ','ŕ','Ŗ','ŗ','Ř','ř','Ś','ś','Ŝ','ŝ','Ş','ş','Š','š','Ţ','ţ','Ť','ť','Ŧ','ŧ','Ũ','ũ','Ū','ū','Ŭ','ŭ','Ů','ů','Ű','ű','Ų','ų','Ŵ','ŵ','Ŷ','ŷ','Ÿ','Ź','ź','Ż','ż','Ž','ž','ſ','ƒ','Ơ','ơ','Ư','ư','Ǎ','ǎ','Ǐ','ǐ','Ǒ','ǒ','Ǔ','ǔ','Ǖ','ǖ','Ǘ','ǘ','Ǚ','ǚ','Ǜ','ǜ','Ǻ','ǻ','Ǽ','ǽ','Ǿ','ǿ'
42
+            'À', 'Á', 'Â', 'Ã', 'Ä', 'Å', 'Æ', 'Ç', 'È', 'É', 'Ê', 'Ë', 'Ì', 'Í', 'Î', 'Ï', 'Ð', 'Ñ', 'Ò', 'Ó', 'Ô', 'Õ', 'Ö', 'Ø', 'Ù', 'Ú', 'Û', 'Ü', 'Ý', 'ß', 'à', 'á', 'â', 'ã', 'ä', 'å', 'æ', 'ç', 'è', 'é', 'ê', 'ë', 'ì', 'í', 'î', 'ï', 'ñ', 'ò', 'ó', 'ô', 'õ', 'ö', 'ø', 'ù', 'ú', 'û', 'ü', 'ý', 'ÿ', 'Ā', 'ā', 'Ă', 'ă', 'Ą', 'ą', 'Ć', 'ć', 'Ĉ', 'ĉ', 'Ċ', 'ċ', 'Č', 'č', 'Ď', 'ď', 'Đ', 'đ', 'Ē', 'ē', 'Ĕ', 'ĕ', 'Ė', 'ė', 'Ę', 'ę', 'Ě', 'ě', 'Ĝ', 'ĝ', 'Ğ', 'ğ', 'Ġ', 'ġ', 'Ģ', 'ģ', 'Ĥ', 'ĥ', 'Ħ', 'ħ', 'Ĩ', 'ĩ', 'Ī', 'ī', 'Ĭ', 'ĭ', 'Į', 'į', 'İ', 'ı', 'IJ', 'ij', 'Ĵ', 'ĵ', 'Ķ', 'ķ', 'Ĺ', 'ĺ', 'Ļ', 'ļ', 'Ľ', 'ľ', 'Ŀ', 'ŀ', 'Ł', 'ł', 'Ń', 'ń', 'Ņ', 'ņ', 'Ň', 'ň', 'ʼn', 'Ō', 'ō', 'Ŏ', 'ŏ', 'Ő', 'ő', 'Œ', 'œ', 'Ŕ', 'ŕ', 'Ŗ', 'ŗ', 'Ř', 'ř', 'Ś', 'ś', 'Ŝ', 'ŝ', 'Ş', 'ş', 'Š', 'š', 'Ţ', 'ţ', 'Ť', 'ť', 'Ŧ', 'ŧ', 'Ũ', 'ũ', 'Ū', 'ū', 'Ŭ', 'ŭ', 'Ů', 'ů', 'Ű', 'ű', 'Ų', 'ų', 'Ŵ', 'ŵ', 'Ŷ', 'ŷ', 'Ÿ', 'Ź', 'ź', 'Ż', 'ż', 'Ž', 'ž', 'ſ', 'ƒ', 'Ơ', 'ơ', 'Ư', 'ư', 'Ǎ', 'ǎ', 'Ǐ', 'ǐ', 'Ǒ', 'ǒ', 'Ǔ', 'ǔ', 'Ǖ', 'ǖ', 'Ǘ', 'ǘ', 'Ǚ', 'ǚ', 'Ǜ', 'ǜ', 'Ǻ', 'ǻ', 'Ǽ', 'ǽ', 'Ǿ', 'ǿ'
43 43
         ];
44 44
         $second = [
45
-            'A','A','A','A','A','A','AE','C','E','E','E','E','I','I','I','I','D','N','O','O','O','O','O','O','U','U','U','U','Y','s','a','a','a','a','a','a','ae','c','e','e','e','e','i','i','i','i','n','o','o','o','o','o','o','u','u','u','u','y','y','A','a','A','a','A','a','C','c','C','c','C','c','C','c','D','d','D','d','E','e','E','e','E','e','E','e','E','e','G','g','G','g','G','g','G','g','H','h','H','h','I','i','I','i','I','i','I','i','I','i','IJ','ij','J','j','K','k','L','l','L','l','L','l','L','l','l','l','N','n','N','n','N','n','n','O','o','O','o','O','o','OE','oe','R','r','R','r','R','r','S','s','S','s','S','s','S','s','T','t','T','t','T','t','U','u','U','u','U','u','U','u','U','u','U','u','W','w','Y','y','Y','Z','z','Z','z','Z','z','s','f','O','o','U','u','A','a','I','i','O','o','U','u','U','u','U','u','U','u','U','u','A','a','AE','ae','O','o'
45
+            'A', 'A', 'A', 'A', 'A', 'A', 'AE', 'C', 'E', 'E', 'E', 'E', 'I', 'I', 'I', 'I', 'D', 'N', 'O', 'O', 'O', 'O', 'O', 'O', 'U', 'U', 'U', 'U', 'Y', 's', 'a', 'a', 'a', 'a', 'a', 'a', 'ae', 'c', 'e', 'e', 'e', 'e', 'i', 'i', 'i', 'i', 'n', 'o', 'o', 'o', 'o', 'o', 'o', 'u', 'u', 'u', 'u', 'y', 'y', 'A', 'a', 'A', 'a', 'A', 'a', 'C', 'c', 'C', 'c', 'C', 'c', 'C', 'c', 'D', 'd', 'D', 'd', 'E', 'e', 'E', 'e', 'E', 'e', 'E', 'e', 'E', 'e', 'G', 'g', 'G', 'g', 'G', 'g', 'G', 'g', 'H', 'h', 'H', 'h', 'I', 'i', 'I', 'i', 'I', 'i', 'I', 'i', 'I', 'i', 'IJ', 'ij', 'J', 'j', 'K', 'k', 'L', 'l', 'L', 'l', 'L', 'l', 'L', 'l', 'l', 'l', 'N', 'n', 'N', 'n', 'N', 'n', 'n', 'O', 'o', 'O', 'o', 'O', 'o', 'OE', 'oe', 'R', 'r', 'R', 'r', 'R', 'r', 'S', 's', 'S', 's', 'S', 's', 'S', 's', 'T', 't', 'T', 't', 'T', 't', 'U', 'u', 'U', 'u', 'U', 'u', 'U', 'u', 'U', 'u', 'U', 'u', 'W', 'w', 'Y', 'y', 'Y', 'Z', 'z', 'Z', 'z', 'Z', 'z', 's', 'f', 'O', 'o', 'U', 'u', 'A', 'a', 'I', 'i', 'O', 'o', 'U', 'u', 'U', 'u', 'U', 'u', 'U', 'u', 'U', 'u', 'A', 'a', 'AE', 'ae', 'O', 'o'
46 46
         ];
47 47
         return str_replace($first, $second, $str);
48 48
     }
@@ -55,6 +55,6 @@  discard block
 block discarded – undo
55 55
      */
56 56
     public static function generateSlug($str)
57 57
     {
58
-        return strtolower(preg_replace(['/[^a-zA-Z0-9 -]/', '/[ -]+/', '/^-|-$/','/[«»""!?,.]+/'], ['', '-', ''], self::removeAccent($str)));
58
+        return strtolower(preg_replace([ '/[^a-zA-Z0-9 -]/', '/[ -]+/', '/^-|-$/', '/[«»""!?,.]+/' ], [ '', '-', '' ], self::removeAccent($str)));
59 59
     }
60 60
 }
Please login to merge, or discard this patch.
src/PrettyPrintArray.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,6 +38,6 @@
 block discarded – undo
38 38
      */
39 39
     public static function prettyPrintArray($str)
40 40
     {
41
-        return print('<pre>'.print_r($str,true).'</pre>');
41
+        return print('<pre>' . print_r($str, true) . '</pre>');
42 42
     }
43 43
 }
Please login to merge, or discard this patch.