Passed
Push — master ( 889e59...55e7f1 )
by Curtis
05:56
created
app/Tables/Builders/IndividualTable.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,12 +11,12 @@
 block discarded – undo
11 11
 
12 12
     public function query()
13 13
     {
14
-        return Individual::leftJoin('events as birth', function ($join) {
14
+        return Individual::leftJoin('events as birth', function($join) {
15 15
             $join->on('individuals.id', '=', 'birth.event_id')
16 16
                 ->where('birth.event_type', '=', 'App\Individual')
17 17
                 ->where('birth.event_type_id', '=', 1);
18 18
         })
19
-            ->leftJoin('events as death', function ($join) {
19
+            ->leftJoin('events as death', function($join) {
20 20
                 $join->on('individuals.id', '=', 'death.event_id')
21 21
                     ->where('death.event_type', '=', 'App\Individual')
22 22
                     ->where('death.event_type_id', '=', 3);
Please login to merge, or discard this patch.