Passed
Push — master ( d88b3b...8c1d75 )
by Prateek
09:11 queued 10s
created
src/Generators/Backend/View.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -43,14 +43,14 @@
 block discarded – undo
43 43
         $this->insertIntoFile(
44 44
             $mainMenuFile,
45 45
             '{{-- Main Menu --}}',
46
-			"\n".'<li class="nav-item dropdown">
46
+            "\n".'<li class="nav-item dropdown">
47 47
                     <a href="#" class="nav-link has-dropdown" data-toggle="dropdown"><i class="fas fa-columns"></i> <span> '.Str::plural($this->module->getModelName()).' </span></a>
48 48
                     <ul class="dropdown-menu">
49 49
                         <li><a class="nav-link" href="{{ route("backend.'.$this->module->getModuleName().'.create") }}"> Add new '.Str::plural($this->module->getModelName()).'</a></li>
50 50
                         <li><a class="nav-link" href="{{ route("backend.'.$this->module->getModuleName().'.index") }}">All '.Str::plural($this->module->getModelName()).'</a></li>
51 51
                     </ul>
52 52
                 </li>'
53
-		);
53
+        );
54 54
         return $this->generatedFiles;
55 55
     }
56 56
 
Please login to merge, or discard this patch.
src/Models/Types/LaragenType.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -4,9 +4,9 @@
 block discarded – undo
4 4
 use Illuminate\Support\Str;
5 5
 use Prateekkarki\Laragen\Models\TypeResolver;
6 6
 
7
- /**
8
-  * @method integer getSize()
9
-  */
7
+    /**
8
+     * @method integer getSize()
9
+     */
10 10
 abstract class LaragenType
11 11
 {
12 12
     protected $uniqueFlag;
Please login to merge, or discard this patch.