Completed
Push — master ( 05ded5...0674f6 )
by Davide
05:57 queued 16s
created
src/Models/Card.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
 
12 12
     use Translatable;
13 13
 
14
-    public $translatedAttributes = ['heading','title', 'body', 'button_text','image_alt'];
14
+    public $translatedAttributes = ['heading', 'title', 'body', 'button_text', 'image_alt'];
15 15
     protected $fillable = [
16 16
         'image_file_name',
17 17
         'img_alignment',
Please login to merge, or discard this patch.
src/Http/Controllers/CardController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -214,7 +214,7 @@  discard block
 block discarded – undo
214 214
     {
215 215
 
216 216
         // Create dir if not exist (in /storage/app/public/images/..)
217
-        if (! \Storage::disk('public')->has('images/'.$imageSubdir.'/')) {
217
+        if (!\Storage::disk('public')->has('images/'.$imageSubdir.'/')) {
218 218
             \Storage::disk('public')->makeDirectory('images/'.$imageSubdir.'/');
219 219
         }
220 220
 
@@ -225,14 +225,14 @@  discard block
 block discarded – undo
225 225
         // - save file as jpg with medium quality
226 226
         $image = Image::make($imageFile->getRealPath())
227 227
                                 ->resize($imageWidth, null,
228
-                                    function ($constraint) {
228
+                                    function($constraint) {
229 229
                                         $constraint->aspectRatio();
230 230
                                     })
231 231
                                 ->save(storage_path($destinationPath.$imageName), 75);
232 232
 
233 233
         // Create the thumb
234 234
         $image->resize($thumbWidth, null,
235
-                    function ($constraint) {
235
+                    function($constraint) {
236 236
                         $constraint->aspectRatio();
237 237
                     })
238 238
                 ->save(storage_path($destinationPath.'thumb_'.$imageName), 75);
Please login to merge, or discard this patch.
src/LaravelCardsServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -21,12 +21,12 @@  discard block
 block discarded – undo
21 21
         $this->loadRoutesFrom(__DIR__.'/../routes/web.php');
22 22
 
23 23
 
24
-        if (! class_exists('CreateCardsTable')) {
24
+        if (!class_exists('CreateCardsTable')) {
25 25
             $this->publishes([
26 26
                 __DIR__.'/../database/migrations/create_cards_table.php.stub' => database_path('migrations/'.Carbon::now()->format('Y_m_d_Hmsu').'_create_cards_table.php'),
27 27
             ], 'migrations');
28 28
         }
29
-        if (! class_exists('CreateCardTranslationsTable')) {
29
+        if (!class_exists('CreateCardTranslationsTable')) {
30 30
             $this->publishes([
31 31
                 __DIR__.'/../database/migrations/create_card_translations_table.php.stub' => database_path('migrations/'.Carbon::now()->format('Y_m_d_Hmsu').'_create_card_translations_table.php'),
32 32
             ], 'migrations');
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
         $this->mergeConfigFrom(__DIR__.'/../config/config.php', 'laravel-cards');
71 71
 
72 72
         // Register the main class to use with the facade
73
-        $this->app->singleton('laravel-cards', function () {
73
+        $this->app->singleton('laravel-cards', function() {
74 74
             return new LaravelCards;
75 75
         });
76 76
     }
Please login to merge, or discard this patch.
src/LaravelCards.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -128,7 +128,7 @@
 block discarded – undo
128 128
     {
129 129
         $ret = [
130 130
              'img_col_size_class' => 'col-md-'.$card->img_col_size,
131
-             'text_col_size_class' => 'col-md-'.(12-$card->img_col_size),
131
+             'text_col_size_class' => 'col-md-'.(12 - $card->img_col_size),
132 132
              'bkg_color' => 'background-color: '.$card->bkg_color.';',
133 133
              'text_color' => 'color: '.$card->text_color.';',
134 134
              'container_wrap' => ($card->container_wrap == 'true') ? 1 : 0,
Please login to merge, or discard this patch.
routes/web.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-    Route::group(['namespace' => 'DavideCasiraghi\LaravelCards\Http\Controllers', 'middleware' => 'web'], function () {
3
+    Route::group(['namespace' => 'DavideCasiraghi\LaravelCards\Http\Controllers', 'middleware' => 'web'], function() {
4 4
 
5 5
         /* Cards */
6 6
         Route::resource('laravel-cards', 'CardController');
Please login to merge, or discard this patch.