Completed
Push — master ( 25a764...17463f )
by Phecho
06:02 queued 02:57
created
app/Models/Group.php 2 patches
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -11,9 +11,6 @@
 block discarded – undo
11 11
 
12 12
 namespace Gitamin\Models;
13 13
 
14
-use Illuminate\Support\Facades\Auth;
15
-use Illuminate\Database\Eloquent\Model;
16
-
17 14
 class Group extends ProjectNamespace
18 15
 {
19 16
     protected $table = 'namespaces';
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,6 +39,6 @@
 block discarded – undo
39 39
      */
40 40
     public function scopeMine($query)
41 41
     {
42
-    	//return $query->where('owner_id', Auth::user()->id);
42
+        //return $query->where('owner_id', Auth::user()->id);
43 43
     }
44 44
 }
Please login to merge, or discard this patch.