Completed
Push — master ( 1fe75f...12dabe )
by Song
02:17
created
src/Grid/Displayers/Gravatar.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 {
7 7
     public function display($size = 30)
8 8
     {
9
-        $src =  sprintf('https://www.gravatar.com/avatar/%s?s=%d', md5(strtolower($this->value)), $size);
9
+        $src = sprintf('https://www.gravatar.com/avatar/%s?s=%d', md5(strtolower($this->value)), $size);
10 10
 
11 11
         return "<img src='$src' class='img img-circle'/>";
12 12
     }
Please login to merge, or discard this patch.
src/Grid/Displayers/Button.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 {
7 7
     public function display($style = null)
8 8
     {
9
-        $style = collect((array) $style)->map(function ($style) {
9
+        $style = collect((array) $style)->map(function($style) {
10 10
             return 'btn-'.$style;
11 11
         })->implode(' ');
12 12
 
Please login to merge, or discard this patch.