Completed
Push — master ( 8327f0...237430 )
by Ariel
06:29
created
migrations/2016_02_01_000009_create_appointments_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      */
13 13
     public function up()
14 14
     {
15
-        Schema::create('appointments', function (Blueprint $table) {
15
+        Schema::create('appointments', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->integer('issuer_id')->unsigned()->nullable();
18 18
             $table->foreign('issuer_id')->references('id')->on('users')->onDelete('cascade');
Please login to merge, or discard this patch.
migrations/2016_02_01_000010_create_preferences_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      */
13 13
     public function up()
14 14
     {
15
-        Schema::create('preferences', function (Blueprint $table) {
15
+        Schema::create('preferences', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('key');
18 18
             $table->string('value');
Please login to merge, or discard this patch.
src/Models/Appointment.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -412,10 +412,10 @@  discard block
 block discarded – undo
412 412
     public function scopeUnarchived($query)
413 413
     {
414 414
         return $query
415
-            ->where(function ($query) {
415
+            ->where(function($query) {
416 416
                 $query->whereIn('status', [Self::STATUS_RESERVED, Self::STATUS_CONFIRMED])
417 417
                     ->where('start_at', '<=', Carbon::parse('today midnight')->timezone('UTC'))
418
-                    ->orWhere(function ($query) {
418
+                    ->orWhere(function($query) {
419 419
                         $query->where('start_at', '>=', Carbon::parse('today midnight')->timezone('UTC'));
420 420
                     });
421 421
             });
@@ -538,21 +538,21 @@  discard block
 block discarded – undo
538 538
     public function scopeAffectingInterval($query, Carbon $startAt, Carbon $finishAt)
539 539
     {
540 540
         return $query
541
-            ->where(function ($query) use ($startAt, $finishAt) {
541
+            ->where(function($query) use ($startAt, $finishAt) {
542 542
 
543
-                $query->where(function ($query) use ($startAt, $finishAt) {
543
+                $query->where(function($query) use ($startAt, $finishAt) {
544 544
                     $query->where('finish_at', '>=', $finishAt->timezone('UTC'))
545 545
                           ->where('start_at', '<=', $startAt->timezone('UTC'));
546 546
                 })
547
-                ->orWhere(function ($query) use ($startAt, $finishAt) {
547
+                ->orWhere(function($query) use ($startAt, $finishAt) {
548 548
                     $query->where('finish_at', '<', $finishAt->timezone('UTC'))
549 549
                           ->where('finish_at', '>', $startAt->timezone('UTC'));
550 550
                 })
551
-                ->orWhere(function ($query) use ($startAt, $finishAt) {
551
+                ->orWhere(function($query) use ($startAt, $finishAt) {
552 552
                     $query->where('start_at', '>', $startAt->timezone('UTC'))
553 553
                           ->where('start_at', '<', $finishAt->timezone('UTC'));
554 554
                 })
555
-                ->orWhere(function ($query) use ($startAt, $finishAt) {
555
+                ->orWhere(function($query) use ($startAt, $finishAt) {
556 556
                     $query->where('start_at', '>', $startAt->timezone('UTC'))
557 557
                           ->where('finish_at', '<', $finishAt->timezone('UTC'));
558 558
                 });
Please login to merge, or discard this patch.
src/Models/Business.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
     {
39 39
         parent::boot();
40 40
 
41
-        static::creating(function ($business) {
41
+        static::creating(function($business) {
42 42
 
43 43
             $business->slug = $business->makeSlug($business->name);
44 44
 
Please login to merge, or discard this patch.
src/TimegridioConciergeServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
      */
47 47
     public function setupRoutes(Router $router)
48 48
     {
49
-        $router->group(['namespace' => 'Timegridio\Concierge\Http\Controllers'], function ($router) {
49
+        $router->group(['namespace' => 'Timegridio\Concierge\Http\Controllers'], function($router) {
50 50
             require __DIR__.'/Http/routes.php';
51 51
         });
52 52
     }
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
     }
67 67
     private function registerConcierge()
68 68
     {
69
-        $this->app->bind('concierge', function ($app) {
69
+        $this->app->bind('concierge', function($app) {
70 70
             return new Concierge($app);
71 71
         });
72 72
     }
Please login to merge, or discard this patch.
src/Calendar/DateslotCalendar.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
 
11 11
         $results = $this->vacancies->get();
12 12
 
13
-        $results = $results->reject(function ($vacancy) {
13
+        $results = $results->reject(function($vacancy) {
14 14
 
15 15
             return !$vacancy->hasRoom();
16 16
         });
Please login to merge, or discard this patch.
src/Calendar/TimeslotCalendar.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
         if ($this->duration !== null) {
16 16
             $toDatetime = $fromDatetime->addMinutes($this->duration);
17 17
 
18
-            $results = $results->reject(function ($vacancy) use ($fromDatetime, $toDatetime) {
18
+            $results = $results->reject(function($vacancy) use ($fromDatetime, $toDatetime) {
19 19
                 return !$vacancy->hasRoomBetween($fromDatetime, $toDatetime);
20 20
             });
21 21
         }
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
             $this->vacancies->forService($this->service);
30 30
         }
31 31
 
32
-        if ($this->date !== null &&  $this->time !== null) {
32
+        if ($this->date !== null && $this->time !== null) {
33 33
             $this->vacancies->forDateTime($this->getUTCDateTime());
34 34
         }
35 35
 
Please login to merge, or discard this patch.