Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
nuradiyana authored and github-actions[bot] committed Jan 23, 2024
1 parent e602589 commit ff26695
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Models/Donor.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
use Illuminate\Database\Eloquent\Model;
use Illuminate\Notifications\Notifiable;
use Illuminate\Database\Eloquent\Concerns\HasUuids;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Inisiatif\DonationRecap\DonationRecap as Recap;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Database\Eloquent\Relations\HasManyThrough;

final class Donor extends Model
Expand Down Expand Up @@ -57,7 +57,7 @@ public function getPhone(): ?DonorPhone

public function sendSmsNotification(): bool
{
return $this->isSupportedChannels('sms') && !\is_null($this->getPhone());
return $this->isSupportedChannels('sms') && ! \is_null($this->getPhone());
}

public function sendEmailNotification(): bool
Expand Down

0 comments on commit ff26695

Please sign in to comment.