Completed
Pull Request — master (#32)
by
unknown
07:31
created
app/Repositories/Eloquent/ReplyRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
      */
56 56
     public function store(array $attributes)
57 57
     {
58
-        if (! is_null($this->validator)) {
58
+        if (!is_null($this->validator)) {
59 59
             $this->validator->with($attributes)
60 60
                 ->passesOrFail(ValidatorInterface::RULE_CREATE);
61 61
         }
Please login to merge, or discard this patch.
app/Providers/EventServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
     {
30 30
         parent::boot($events);
31 31
 
32
-        if (! \Request::isMethod('GET')) {
32
+        if (!\Request::isMethod('GET')) {
33 33
             $events->subscribe(NotificationListener::class);
34 34
             $events->subscribe(TopicListener::class);
35 35
         }
Please login to merge, or discard this patch.