@@ -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