Completed
Branch master (a6481d)
by Fèvre
02:12
created
app/Models/User.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -109,22 +109,22 @@
 block discarded – undo
109 109
     public function registerMediaConversions()
110 110
     {
111 111
         $this->addMediaConversion('thumbnail.small')
112
-              ->width(100)
113
-              ->height(100)
114
-              ->keepOriginalImageFormat();
112
+                ->width(100)
113
+                ->height(100)
114
+                ->keepOriginalImageFormat();
115 115
         
116 116
         $this->addMediaConversion('thumbnail.medium')
117
-              ->width(200)
118
-              ->height(200)
119
-              ->keepOriginalImageFormat();
117
+                ->width(200)
118
+                ->height(200)
119
+                ->keepOriginalImageFormat();
120 120
         
121 121
         $this->addMediaConversion('thumbnail.big')
122
-              ->width(300)
123
-              ->height(300)
124
-              ->keepOriginalImageFormat();
122
+                ->width(300)
123
+                ->height(300)
124
+                ->keepOriginalImageFormat();
125 125
         
126 126
         $this->addMediaConversion('original')
127
-              ->keepOriginalImageFormat();
127
+                ->keepOriginalImageFormat();
128 128
     }
129 129
 
130 130
     /**
Please login to merge, or discard this patch.