Skip to content

Commit 7376ff8

Browse files
authored
Apply fixes from StyleCI (#185)
1 parent 6b2f460 commit 7376ff8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Fields/Field.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ public function resolveForShow($repository, $attribute = null)
317317
return;
318318
}
319319

320-
if (!$this->showCallback) {
320+
if (! $this->showCallback) {
321321
$this->resolve($repository, $attribute);
322322
} elseif (is_callable($this->showCallback)) {
323323
tap($this->value ?? $this->resolveAttribute($repository, $attribute), function ($value) use ($repository, $attribute) {
@@ -340,7 +340,7 @@ public function resolveForIndex($repository, $attribute = null)
340340
return;
341341
}
342342

343-
if (!$this->indexCallback) {
343+
if (! $this->indexCallback) {
344344
$this->resolve($repository, $attribute);
345345
} elseif (is_callable($this->indexCallback)) {
346346
tap($this->value ?? $this->resolveAttribute($repository, $attribute), function ($value) use ($repository, $attribute) {
@@ -360,7 +360,7 @@ public function resolve($repository, $attribute = null)
360360
return;
361361
}
362362

363-
if (!$this->resolveCallback) {
363+
if (! $this->resolveCallback) {
364364
$this->value = $this->resolveAttribute($repository, $attribute);
365365
} elseif (is_callable($this->resolveCallback)) {
366366
tap($this->resolveAttribute($repository, $attribute), function ($value) use ($repository, $attribute) {

0 commit comments

Comments
 (0)