Passed
Pull Request — master (#25)
by Prateek
03:11
created
src/Generators/Backend/View.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,14 +51,14 @@
 block discarded – undo
51 51
         $this->insertIntoFile(
52 52
             $mainMenuFile,
53 53
             '{{-- Main Menu --}}',
54
-			"\n".'<li class="nav-item dropdown">
54
+            "\n".'<li class="nav-item dropdown">
55 55
                     <a href="#" class="nav-link has-dropdown" data-toggle="dropdown"><i class="fas fa-columns"></i> <span> '.Str::plural($this->module->getModelName()).' </span></a>
56 56
                     <ul class="dropdown-menu">
57 57
                         <li><a class="nav-link" href="{{ route("backend.'.$this->module->getModuleName().'.create") }}"> Add new '.Str::plural($this->module->getModelName()).'</a></li>
58 58
                         <li><a class="nav-link" href="{{ route("backend.'.$this->module->getModuleName().'.index") }}">All '.Str::plural($this->module->getModelName()).'</a></li>
59 59
                     </ul>
60 60
                 </li>'
61
-		);
61
+        );
62 62
         return $this->generatedFiles;
63 63
     }
64 64
 
Please login to merge, or discard this patch.
src/Models/Types/LaragenType.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -4,10 +4,10 @@
 block discarded – undo
4 4
 use Illuminate\Support\Str;
5 5
 use Prateekkarki\Laragen\Models\TypeResolver;
6 6
 
7
- /**
8
-  * @method integer getSize()
9
-  * @method array getPivotColumns()
10
-  */
7
+    /**
8
+     * @method integer getSize()
9
+     * @method array getPivotColumns()
10
+     */
11 11
 abstract class LaragenType
12 12
 {
13 13
     protected $uniqueFlag;
Please login to merge, or discard this patch.