Completed
Branch master (4cabfd)
by angel
04:15 queued 02:04
created
src/SeoUrl.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -31,11 +31,11 @@  discard block
 block discarded – undo
31 31
 class SeoUrl
32 32
 {
33 33
     /**
34
-    * Remove Accent
35
-    * 
36
-    * @param string $str
37
-    * @return string
38
-    */
34
+     * Remove Accent
35
+     * 
36
+     * @param string $str
37
+     * @return string
38
+     */
39 39
     public static function removeAccent($str)
40 40
     {
41 41
         $first = [
@@ -48,11 +48,11 @@  discard block
 block discarded – undo
48 48
     }
49 49
 
50 50
     /**
51
-    * Generate Slug
52
-    * 
53
-    * @param string $str
54
-    * @return string
55
-    */
51
+     * Generate Slug
52
+     * 
53
+     * @param string $str
54
+     * @return string
55
+     */
56 56
     public static function generateSlug($str)
57 57
     {
58 58
         return strtolower(preg_replace(
Please login to merge, or discard this patch.
src/Gravatar.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -34,11 +34,11 @@
 block discarded – undo
34 34
     const HTTPS_URL = 'https://secure.gravatar.com/avatar/';
35 35
 
36 36
     /**
37
-    * Returns the user's gravatar url.
38
-    * @param string $email The email address
39
-    * @param array $options Optional, additional key/value attributes to include
40
-    * @return string Link to the user's gravatar image.
41
-    */
37
+     * Returns the user's gravatar url.
38
+     * @param string $email The email address
39
+     * @param array $options Optional, additional key/value attributes to include
40
+     * @return string Link to the user's gravatar image.
41
+     */
42 42
     public static function getAvatarUrl($email, $options = [])
43 43
     {
44 44
         $size       = isset($options['s']) ? $options['s'] : 80;
Please login to merge, or discard this patch.