diff --git a/src/Illuminate/Auth/Access/AuthorizationException.php b/src/Illuminate/Auth/Access/AuthorizationException.php index 1454bde2a01d..2594a0fd7b83 100644 --- a/src/Illuminate/Auth/Access/AuthorizationException.php +++ b/src/Illuminate/Auth/Access/AuthorizationException.php @@ -54,9 +54,7 @@ public function response() */ public function setResponse($response) { - $this->response = $response; - - return $this; + return tap($this, fn () => $this->response = $response); } /** @@ -67,9 +65,7 @@ public function setResponse($response) */ public function withStatus($status) { - $this->status = $status; - - return $this; + return tap($this, fn () => $this->status = $status); } /** diff --git a/src/Illuminate/Auth/Access/Gate.php b/src/Illuminate/Auth/Access/Gate.php index f02b85d63cb8..0074962c3884 100644 --- a/src/Illuminate/Auth/Access/Gate.php +++ b/src/Illuminate/Auth/Access/Gate.php @@ -291,9 +291,7 @@ protected function buildAbilityCallback($ability, $callback) */ public function policy($class, $policy) { - $this->policies[$class] = $policy; - - return $this; + return tap($this, fn () => $this->policies[$class] = $policy); } /** @@ -304,9 +302,7 @@ public function policy($class, $policy) */ public function before(callable $callback) { - $this->beforeCallbacks[] = $callback; - - return $this; + return tap($this, fn () => $this->beforeCallbacks[] = $callback); } /** @@ -317,9 +313,7 @@ public function before(callable $callback) */ public function after(callable $callback) { - $this->afterCallbacks[] = $callback; - - return $this; + return tap($this, fn () => $this->afterCallbacks[] = $callback); } /** @@ -716,9 +710,7 @@ protected function guessPolicyName($class) */ public function guessPolicyNamesUsing(callable $callback) { - $this->guessPolicyNamesUsingCallback = $callback; - - return $this; + return tap($this, fn () => $this->guessPolicyNamesUsingCallback = $callback); } /** @@ -883,9 +875,7 @@ public function policies() */ public function defaultDenialResponse(Response $response) { - $this->defaultDenialResponse = $response; - - return $this; + return tap($this, fn () => $this->defaultDenialResponse = $response); } /** @@ -896,8 +886,6 @@ public function defaultDenialResponse(Response $response) */ public function setContainer(Container $container) { - $this->container = $container; - - return $this; + return tap($this, fn () => $this->container = $container); } } diff --git a/src/Illuminate/Auth/Access/Response.php b/src/Illuminate/Auth/Access/Response.php index 6461d0fce128..6d961558aef8 100644 --- a/src/Illuminate/Auth/Access/Response.php +++ b/src/Illuminate/Auth/Access/Response.php @@ -165,9 +165,7 @@ public function authorize() */ public function withStatus($status) { - $this->status = $status; - - return $this; + return tap($this, fn () => $this->status = $status); } /** diff --git a/src/Illuminate/Auth/AuthManager.php b/src/Illuminate/Auth/AuthManager.php index 4bba02800ad7..55a1b61cc83c 100755 --- a/src/Illuminate/Auth/AuthManager.php +++ b/src/Illuminate/Auth/AuthManager.php @@ -261,9 +261,7 @@ public function userResolver() */ public function resolveUsersUsing(Closure $userResolver) { - $this->userResolver = $userResolver; - - return $this; + return tap($this, fn () => $this->userResolver = $userResolver); } /** @@ -275,9 +273,7 @@ public function resolveUsersUsing(Closure $userResolver) */ public function extend($driver, Closure $callback) { - $this->customCreators[$driver] = $callback; - - return $this; + return tap($this, fn () => $this->customCreators[$driver] = $callback); } /** @@ -289,9 +285,7 @@ public function extend($driver, Closure $callback) */ public function provider($name, Closure $callback) { - $this->customProviderCreators[$name] = $callback; - - return $this; + return tap($this, fn () => $this->customProviderCreators[$name] = $callback); } /** @@ -311,9 +305,7 @@ public function hasResolvedGuards() */ public function forgetGuards() { - $this->guards = []; - - return $this; + return tap($this, fn () => $this->guards = []); } /** @@ -324,9 +316,7 @@ public function forgetGuards() */ public function setApplication($app) { - $this->app = $app; - - return $this; + return tap($this, fn () => $this->app = $app); } /** diff --git a/src/Illuminate/Auth/EloquentUserProvider.php b/src/Illuminate/Auth/EloquentUserProvider.php index 77c8fef712b1..e68350ae86b8 100755 --- a/src/Illuminate/Auth/EloquentUserProvider.php +++ b/src/Illuminate/Auth/EloquentUserProvider.php @@ -227,9 +227,7 @@ public function getHasher() */ public function setHasher(HasherContract $hasher) { - $this->hasher = $hasher; - - return $this; + return tap($this, fn () => $this->hasher = $hasher); } /** @@ -250,9 +248,7 @@ public function getModel() */ public function setModel($model) { - $this->model = $model; - - return $this; + return tap($this, fn () => $this->model = $model); } /** @@ -273,8 +269,6 @@ public function getQueryCallback() */ public function withQuery($queryCallback = null) { - $this->queryCallback = $queryCallback; - - return $this; + return tap($this, fn () => $this->queryCallback = $queryCallback); } } diff --git a/src/Illuminate/Auth/GuardHelpers.php b/src/Illuminate/Auth/GuardHelpers.php index 9cdf69776c2e..e5fd5311f54d 100644 --- a/src/Illuminate/Auth/GuardHelpers.php +++ b/src/Illuminate/Auth/GuardHelpers.php @@ -86,9 +86,7 @@ public function id() */ public function setUser(AuthenticatableContract $user) { - $this->user = $user; - - return $this; + return tap($this, fn () => $this->user = $user); } /** @@ -98,9 +96,7 @@ public function setUser(AuthenticatableContract $user) */ public function forgetUser() { - $this->user = null; - - return $this; + return tap($this, fn () => $this->user = null); } /** diff --git a/src/Illuminate/Auth/RequestGuard.php b/src/Illuminate/Auth/RequestGuard.php index 9b8fd10a36b6..bbf2124d68cf 100644 --- a/src/Illuminate/Auth/RequestGuard.php +++ b/src/Illuminate/Auth/RequestGuard.php @@ -80,8 +80,6 @@ public function validate(#[\SensitiveParameter] array $credentials = []) */ public function setRequest(Request $request) { - $this->request = $request; - - return $this; + return tap($this, fn () => $this->request = $request); } } diff --git a/src/Illuminate/Auth/SessionGuard.php b/src/Illuminate/Auth/SessionGuard.php index 3e559f296b54..424a91e43b4e 100644 --- a/src/Illuminate/Auth/SessionGuard.php +++ b/src/Illuminate/Auth/SessionGuard.php @@ -864,9 +864,7 @@ protected function getRememberDuration() */ public function setRememberDuration($minutes) { - $this->rememberDuration = $minutes; - - return $this; + return tap($this, fn () => $this->rememberDuration = $minutes); } /** @@ -972,9 +970,7 @@ public function getRequest() */ public function setRequest(Request $request) { - $this->request = $request; - - return $this; + return tap($this, fn () => $this->request = $request); } /** diff --git a/src/Illuminate/Auth/TokenGuard.php b/src/Illuminate/Auth/TokenGuard.php index 1e002a0a0845..0a4991928c1c 100644 --- a/src/Illuminate/Auth/TokenGuard.php +++ b/src/Illuminate/Auth/TokenGuard.php @@ -143,8 +143,6 @@ public function validate(array $credentials = []) */ public function setRequest(Request $request) { - $this->request = $request; - - return $this; + return tap($this, fn () => $this->request = $request); } } diff --git a/src/Illuminate/Broadcasting/AnonymousEvent.php b/src/Illuminate/Broadcasting/AnonymousEvent.php index 51e47f158531..b57542e2e908 100644 --- a/src/Illuminate/Broadcasting/AnonymousEvent.php +++ b/src/Illuminate/Broadcasting/AnonymousEvent.php @@ -52,9 +52,7 @@ public function __construct(protected Channel|array|string $channels) */ public function via(string $connection): static { - $this->connection = $connection; - - return $this; + return tap($this, fn () => $this->connection = $connection); } /** @@ -62,9 +60,7 @@ public function via(string $connection): static */ public function as(string $name): static { - $this->name = $name; - - return $this; + return tap($this, fn () => $this->name = $name); } /** @@ -86,9 +82,7 @@ public function with(Arrayable|array $payload): static */ public function toOthers(): static { - $this->includeCurrentUser = false; - - return $this; + return tap($this, fn () => $this->includeCurrentUser = false); } /** diff --git a/src/Illuminate/Broadcasting/BroadcastManager.php b/src/Illuminate/Broadcasting/BroadcastManager.php index 4df00526aa3b..ee178c589d0c 100644 --- a/src/Illuminate/Broadcasting/BroadcastManager.php +++ b/src/Illuminate/Broadcasting/BroadcastManager.php @@ -471,9 +471,7 @@ public function purge($name = null) */ public function extend($driver, Closure $callback) { - $this->customCreators[$driver] = $callback; - - return $this; + return tap($this, fn () => $this->customCreators[$driver] = $callback); } /** @@ -494,9 +492,7 @@ public function getApplication() */ public function setApplication($app) { - $this->app = $app; - - return $this; + return tap($this, fn () => $this->app = $app); } /** @@ -506,9 +502,7 @@ public function setApplication($app) */ public function forgetDrivers() { - $this->drivers = []; - - return $this; + return tap($this, fn () => $this->drivers = []); } /** diff --git a/src/Illuminate/Broadcasting/InteractsWithSockets.php b/src/Illuminate/Broadcasting/InteractsWithSockets.php index 6be0791a5e06..86b95db7819e 100644 --- a/src/Illuminate/Broadcasting/InteractsWithSockets.php +++ b/src/Illuminate/Broadcasting/InteractsWithSockets.php @@ -20,9 +20,7 @@ trait InteractsWithSockets */ public function dontBroadcastToCurrentUser() { - $this->socket = Broadcast::socket(); - - return $this; + return tap($this, fn () => $this->socket = Broadcast::socket()); } /** @@ -32,8 +30,6 @@ public function dontBroadcastToCurrentUser() */ public function broadcastToEveryone() { - $this->socket = null; - - return $this; + return tap($this, fn () => $this->socket = null); } } diff --git a/src/Illuminate/Bus/Batchable.php b/src/Illuminate/Bus/Batchable.php index 5cf5706070e9..e1f1eb2a0ea7 100644 --- a/src/Illuminate/Bus/Batchable.php +++ b/src/Illuminate/Bus/Batchable.php @@ -59,9 +59,7 @@ public function batching() */ public function withBatchId(string $batchId) { - $this->batchId = $batchId; - - return $this; + return tap($this, fn () => $this->batchId = $batchId); } /** diff --git a/src/Illuminate/Bus/Dispatcher.php b/src/Illuminate/Bus/Dispatcher.php index 5427c3ffb1b5..1ca7cfbcd731 100644 --- a/src/Illuminate/Bus/Dispatcher.php +++ b/src/Illuminate/Bus/Dispatcher.php @@ -266,9 +266,7 @@ public function dispatchAfterResponse($command, $handler = null) */ public function pipeThrough(array $pipes) { - $this->pipes = $pipes; - - return $this; + return tap($this, fn () => $this->pipes = $pipes); } /** @@ -279,8 +277,6 @@ public function pipeThrough(array $pipes) */ public function map(array $map) { - $this->handlers = array_merge($this->handlers, $map); - - return $this; + return tap($this, fn () => $this->handlers = array_merge($this->handlers, $map)); } } diff --git a/src/Illuminate/Bus/PendingBatch.php b/src/Illuminate/Bus/PendingBatch.php index e5ebf8c40cf4..eb47f8a448af 100644 --- a/src/Illuminate/Bus/PendingBatch.php +++ b/src/Illuminate/Bus/PendingBatch.php @@ -209,9 +209,7 @@ public function finallyCallbacks() */ public function allowFailures($allowFailures = true) { - $this->options['allowFailures'] = $allowFailures; - - return $this; + return tap($this, fn () => $this->options['allowFailures'] = $allowFailures); } /** @@ -232,9 +230,7 @@ public function allowsFailures() */ public function name(string $name) { - $this->name = $name; - - return $this; + return tap($this, fn () => $this->name = $name); } /** @@ -245,9 +241,7 @@ public function name(string $name) */ public function onConnection(string $connection) { - $this->options['connection'] = $connection; - - return $this; + return tap($this, fn () => $this->options['connection'] = $connection); } /** @@ -268,9 +262,7 @@ public function connection() */ public function onQueue($queue) { - $this->options['queue'] = enum_value($queue); - - return $this; + return tap($this, fn () => $this->options['queue'] = enum_value($queue)); } /** @@ -292,9 +284,7 @@ public function queue() */ public function withOption(string $key, $value) { - $this->options[$key] = $value; - - return $this; + return tap($this, fn () => $this->options[$key] = $value); } /** diff --git a/src/Illuminate/Bus/Queueable.php b/src/Illuminate/Bus/Queueable.php index 8feeda655b8f..2a525a05743a 100644 --- a/src/Illuminate/Bus/Queueable.php +++ b/src/Illuminate/Bus/Queueable.php @@ -84,9 +84,7 @@ trait Queueable */ public function onConnection($connection) { - $this->connection = enum_value($connection); - - return $this; + return tap($this, fn () => $this->connection = enum_value($connection)); } /** @@ -97,9 +95,7 @@ public function onConnection($connection) */ public function onQueue($queue) { - $this->queue = enum_value($queue); - - return $this; + return tap($this, fn () => $this->queue = enum_value($queue)); } /** @@ -142,9 +138,7 @@ public function allOnQueue($queue) */ public function delay($delay) { - $this->delay = $delay; - - return $this; + return tap($this, fn () => $this->delay = $delay); } /** @@ -154,9 +148,7 @@ public function delay($delay) */ public function withoutDelay() { - $this->delay = 0; - - return $this; + return tap($this, fn () => $this->delay = 0); } /** @@ -166,9 +158,7 @@ public function withoutDelay() */ public function afterCommit() { - $this->afterCommit = true; - - return $this; + return tap($this, fn () => $this->afterCommit = true); } /** @@ -178,9 +168,7 @@ public function afterCommit() */ public function beforeCommit() { - $this->afterCommit = false; - - return $this; + return tap($this, fn () => $this->afterCommit = false); } /** @@ -191,9 +179,7 @@ public function beforeCommit() */ public function through($middleware) { - $this->middleware = Arr::wrap($middleware); - - return $this; + return tap($this, fn () => $this->middleware = Arr::wrap($middleware)); } /** diff --git a/src/Illuminate/Cache/CacheManager.php b/src/Illuminate/Cache/CacheManager.php index 5ae5b6a3358b..c613a041f507 100755 --- a/src/Illuminate/Cache/CacheManager.php +++ b/src/Illuminate/Cache/CacheManager.php @@ -423,9 +423,7 @@ public function purge($name = null) */ public function extend($driver, Closure $callback) { - $this->customCreators[$driver] = $callback->bindTo($this, $this); - - return $this; + return tap($this, fn () => $this->customCreators[$driver] = $callback->bindTo($this, $this)); } /** @@ -436,9 +434,7 @@ public function extend($driver, Closure $callback) */ public function setApplication($app) { - $this->app = $app; - - return $this; + return tap($this, fn () => $this->app = $app); } /** diff --git a/src/Illuminate/Cache/DatabaseStore.php b/src/Illuminate/Cache/DatabaseStore.php index 3210b718de61..056fa81aad05 100755 --- a/src/Illuminate/Cache/DatabaseStore.php +++ b/src/Illuminate/Cache/DatabaseStore.php @@ -451,9 +451,7 @@ public function getConnection() */ public function setLockConnection($connection) { - $this->lockConnection = $connection; - - return $this; + return tap($this, fn () => $this->lockConnection = $connection); } /** diff --git a/src/Illuminate/Cache/Events/CacheEvent.php b/src/Illuminate/Cache/Events/CacheEvent.php index b6bc49b15c96..fbafee595e57 100644 --- a/src/Illuminate/Cache/Events/CacheEvent.php +++ b/src/Illuminate/Cache/Events/CacheEvent.php @@ -48,8 +48,6 @@ public function __construct($storeName, $key, array $tags = []) */ public function setTags($tags) { - $this->tags = $tags; - - return $this; + return tap($this, fn () => $this->tags = $tags); } } diff --git a/src/Illuminate/Cache/FileStore.php b/src/Illuminate/Cache/FileStore.php index 4105582d44c6..4bc208303c77 100755 --- a/src/Illuminate/Cache/FileStore.php +++ b/src/Illuminate/Cache/FileStore.php @@ -392,9 +392,7 @@ public function getDirectory() */ public function setDirectory($directory) { - $this->directory = $directory; - - return $this; + return tap($this, fn () => $this->directory = $directory); } /** @@ -405,9 +403,7 @@ public function setDirectory($directory) */ public function setLockDirectory($lockDirectory) { - $this->lockDirectory = $lockDirectory; - - return $this; + return tap($this, fn () => $this->lockDirectory = $lockDirectory); } /** diff --git a/src/Illuminate/Cache/Lock.php b/src/Illuminate/Cache/Lock.php index 18cd86a5690e..36836c7c3e3d 100644 --- a/src/Illuminate/Cache/Lock.php +++ b/src/Illuminate/Cache/Lock.php @@ -176,8 +176,6 @@ public function isOwnedBy($owner) */ public function betweenBlockedAttemptsSleepFor($milliseconds) { - $this->sleepMilliseconds = $milliseconds; - - return $this; + return tap($this, fn () => $this->sleepMilliseconds = $milliseconds); } } diff --git a/src/Illuminate/Cache/RateLimiting/Limit.php b/src/Illuminate/Cache/RateLimiting/Limit.php index cfdd651894f6..e8b80a6f9482 100644 --- a/src/Illuminate/Cache/RateLimiting/Limit.php +++ b/src/Illuminate/Cache/RateLimiting/Limit.php @@ -125,9 +125,7 @@ public static function none() */ public function by($key) { - $this->key = $key; - - return $this; + return tap($this, fn () => $this->key = $key); } /** @@ -138,9 +136,7 @@ public function by($key) */ public function response(callable $callback) { - $this->responseCallback = $callback; - - return $this; + return tap($this, fn () => $this->responseCallback = $callback); } /** diff --git a/src/Illuminate/Cache/RedisStore.php b/src/Illuminate/Cache/RedisStore.php index 566913389dcb..483853fef741 100755 --- a/src/Illuminate/Cache/RedisStore.php +++ b/src/Illuminate/Cache/RedisStore.php @@ -364,9 +364,7 @@ public function setConnection($connection) */ public function setLockConnection($connection) { - $this->lockConnection = $connection; - - return $this; + return tap($this, fn () => $this->lockConnection = $connection); } /** diff --git a/src/Illuminate/Cache/Repository.php b/src/Illuminate/Cache/Repository.php index 254252167e0c..01a3e0a3c8da 100755 --- a/src/Illuminate/Cache/Repository.php +++ b/src/Illuminate/Cache/Repository.php @@ -671,9 +671,7 @@ public function getDefaultCacheTime() */ public function setDefaultCacheTime($seconds) { - $this->default = $seconds; - - return $this; + return tap($this, fn () => $this->default = $seconds); } /** @@ -694,9 +692,7 @@ public function getStore() */ public function setStore($store) { - $this->store = $store; - - return $this; + return tap($this, fn () => $this->store = $store); } /** diff --git a/src/Illuminate/Collections/Collection.php b/src/Illuminate/Collections/Collection.php index dddaafcdac6c..7c0e6f0241a5 100644 --- a/src/Illuminate/Collections/Collection.php +++ b/src/Illuminate/Collections/Collection.php @@ -1010,9 +1010,7 @@ public function pop($count = 1) */ public function prepend($value, $key = null) { - $this->items = Arr::prepend($this->items, ...func_get_args()); - - return $this; + return tap($this, fn () => $this->items = Arr::prepend($this->items, ...func_get_args())); } /** @@ -1038,9 +1036,7 @@ public function push(...$values) */ public function unshift(...$values) { - array_unshift($this->items, ...$values); - - return $this; + return tap($this, fn () => array_unshift($this->items, ...$values)); } /** @@ -1086,9 +1082,7 @@ public function pull($key, $default = null) */ public function put($key, $value) { - $this->offsetSet($key, $value); - - return $this; + return tap($this)->offsetSet($key, $value); } /** @@ -1715,9 +1709,7 @@ public function takeWhile($value) */ public function transform(callable $callback) { - $this->items = $this->map($callback)->all(); - - return $this; + return tap($this, fn () => $this->items = $this->map($callback)->all()); } /** @@ -1849,9 +1841,7 @@ public function countBy($countBy = null) */ public function add($item) { - $this->items[] = $item; - - return $this; + return tap($this, fn () => $this->items[] = $item); } /** diff --git a/src/Illuminate/Collections/Traits/EnumeratesValues.php b/src/Illuminate/Collections/Traits/EnumeratesValues.php index 6d2c708b8fa8..a65b2a6fe22c 100644 --- a/src/Illuminate/Collections/Traits/EnumeratesValues.php +++ b/src/Illuminate/Collections/Traits/EnumeratesValues.php @@ -240,9 +240,7 @@ public function dd(...$args) */ public function dump(...$args) { - dump($this->all(), ...$args); - - return $this; + return tap($this, fn () => dump($this->all(), ...$args)); } /** @@ -888,9 +886,7 @@ public function reject($callback = true) */ public function tap(callable $callback) { - $callback($this); - - return $this; + return tap($this, $callback(...)); } /** @@ -1008,9 +1004,7 @@ public function __toString() */ public function escapeWhenCastingToString($escape = true) { - $this->escapeWhenCastingToString = $escape; - - return $this; + return tap($this, fn () => $this->escapeWhenCastingToString = $escape); } /** diff --git a/src/Illuminate/Conditionable/HigherOrderWhenProxy.php b/src/Illuminate/Conditionable/HigherOrderWhenProxy.php index 579114cf1989..4eafff98bf26 100644 --- a/src/Illuminate/Conditionable/HigherOrderWhenProxy.php +++ b/src/Illuminate/Conditionable/HigherOrderWhenProxy.php @@ -51,9 +51,7 @@ public function __construct($target) */ public function condition($condition) { - [$this->condition, $this->hasCondition] = [$condition, true]; - - return $this; + return tap($this, fn () => [$this->condition, $this->hasCondition] = [$condition, true]); } /** @@ -63,9 +61,7 @@ public function condition($condition) */ public function negateConditionOnCapture() { - $this->negateConditionOnCapture = true; - - return $this; + return tap($this, fn () => $this->negateConditionOnCapture = true); } /** diff --git a/src/Illuminate/Console/Application.php b/src/Illuminate/Console/Application.php index 7e3a6189d801..04534b764608 100755 --- a/src/Illuminate/Console/Application.php +++ b/src/Illuminate/Console/Application.php @@ -277,9 +277,7 @@ public function resolveCommands($commands) */ public function setContainerCommandLoader() { - $this->setCommandLoader(new ContainerCommandLoader($this->laravel, $this->commandMap)); - - return $this; + return tap($this, fn () => $this->setCommandLoader(new ContainerCommandLoader($this->laravel, $this->commandMap))); } /** diff --git a/src/Illuminate/Console/CacheCommandMutex.php b/src/Illuminate/Console/CacheCommandMutex.php index 0a896c6bc9ce..29d8d64ecc4c 100644 --- a/src/Illuminate/Console/CacheCommandMutex.php +++ b/src/Illuminate/Console/CacheCommandMutex.php @@ -123,9 +123,7 @@ protected function commandMutexName($command) */ public function useStore($store) { - $this->store = $store; - - return $this; + return tap($this, fn () => $this->store = $store); } /** diff --git a/src/Illuminate/Console/Command.php b/src/Illuminate/Console/Command.php index 3d5167ef82ba..f446c286a5b3 100755 --- a/src/Illuminate/Console/Command.php +++ b/src/Illuminate/Console/Command.php @@ -299,9 +299,7 @@ public function isHidden(): bool #[\Override] public function setHidden(bool $hidden = true): static { - parent::setHidden($this->hidden = $hidden); - - return $this; + return tap($this, fn () => parent::setHidden($this->hidden = $hidden)); } /** diff --git a/src/Illuminate/Console/Concerns/InteractsWithIO.php b/src/Illuminate/Console/Concerns/InteractsWithIO.php index 6101477a1a77..f88f3681d85a 100644 --- a/src/Illuminate/Console/Concerns/InteractsWithIO.php +++ b/src/Illuminate/Console/Concerns/InteractsWithIO.php @@ -386,9 +386,7 @@ public function alert($string, $verbosity = null) */ public function newLine($count = 1) { - $this->output->newLine($count); - - return $this; + return tap($this, fn () => $this->output->newLine($count)); } /** diff --git a/src/Illuminate/Console/Scheduling/CacheEventMutex.php b/src/Illuminate/Console/Scheduling/CacheEventMutex.php index 3d1ad9247a1b..49ce2664bafd 100644 --- a/src/Illuminate/Console/Scheduling/CacheEventMutex.php +++ b/src/Illuminate/Console/Scheduling/CacheEventMutex.php @@ -107,8 +107,6 @@ protected function shouldUseLocks($store) */ public function useStore($store) { - $this->store = $store; - - return $this; + return tap($this, fn () => $this->store = $store); } } diff --git a/src/Illuminate/Console/Scheduling/CacheSchedulingMutex.php b/src/Illuminate/Console/Scheduling/CacheSchedulingMutex.php index ca8e2cb881f7..72eeed74eb41 100644 --- a/src/Illuminate/Console/Scheduling/CacheSchedulingMutex.php +++ b/src/Illuminate/Console/Scheduling/CacheSchedulingMutex.php @@ -68,8 +68,6 @@ public function exists(Event $event, DateTimeInterface $time) */ public function useStore($store) { - $this->store = $store; - - return $this; + return tap($this, fn () => $this->store = $store); } } diff --git a/src/Illuminate/Console/Scheduling/Event.php b/src/Illuminate/Console/Scheduling/Event.php index 371e2d7018d8..c96a38eb95a7 100644 --- a/src/Illuminate/Console/Scheduling/Event.php +++ b/src/Illuminate/Console/Scheduling/Event.php @@ -345,9 +345,7 @@ public function filtersPass($app) */ public function storeOutput() { - $this->ensureOutputIsBeingCaptured(); - - return $this; + return tap($this, fn () => $this->ensureOutputIsBeingCaptured()); } /** @@ -586,9 +584,7 @@ protected function getHttpClient(Container $container) */ public function before(Closure $callback) { - $this->beforeCallbacks[] = $callback; - - return $this; + return tap($this, fn () => $this->beforeCallbacks[] = $callback); } /** @@ -769,9 +765,7 @@ public function getExpression() */ public function preventOverlapsUsing(EventMutex $mutex) { - $this->mutex = $mutex; - - return $this; + return tap($this, fn () => $this->mutex = $mutex); } /** @@ -798,9 +792,7 @@ public function mutexName() */ public function createMutexNameUsing(Closure|string $mutexName) { - $this->mutexNameResolver = is_string($mutexName) ? fn () => $mutexName : $mutexName; - - return $this; + return tap($this, fn () => $this->mutexNameResolver = is_string($mutexName) ? fn () => $mutexName : $mutexName); } /** diff --git a/src/Illuminate/Console/Scheduling/ManagesAttributes.php b/src/Illuminate/Console/Scheduling/ManagesAttributes.php index 1a18378eb62f..36e9a008220e 100644 --- a/src/Illuminate/Console/Scheduling/ManagesAttributes.php +++ b/src/Illuminate/Console/Scheduling/ManagesAttributes.php @@ -105,9 +105,7 @@ trait ManagesAttributes */ public function user($user) { - $this->user = $user; - - return $this; + return tap($this, fn () => $this->user = $user); } /** @@ -118,9 +116,7 @@ public function user($user) */ public function environments($environments) { - $this->environments = is_array($environments) ? $environments : func_get_args(); - - return $this; + return tap($this, fn () => $this->environments = is_array($environments) ? $environments : func_get_args()); } /** @@ -130,9 +126,7 @@ public function environments($environments) */ public function evenInMaintenanceMode() { - $this->evenInMaintenanceMode = true; - - return $this; + return tap($this, fn () => $this->evenInMaintenanceMode = true); } /** @@ -160,9 +154,7 @@ public function withoutOverlapping($expiresAt = 1440) */ public function onOneServer() { - $this->onOneServer = true; - - return $this; + return tap($this, fn () => $this->onOneServer = true); } /** @@ -172,9 +164,7 @@ public function onOneServer() */ public function runInBackground() { - $this->runInBackground = true; - - return $this; + return tap($this, fn () => $this->runInBackground = true); } /** @@ -226,8 +216,6 @@ public function name($description) */ public function description($description) { - $this->description = $description; - - return $this; + return tap($this, fn () => $this->description = $description); } } diff --git a/src/Illuminate/Console/Scheduling/ManagesFrequencies.php b/src/Illuminate/Console/Scheduling/ManagesFrequencies.php index d974a91b769e..2f6513be5bd2 100644 --- a/src/Illuminate/Console/Scheduling/ManagesFrequencies.php +++ b/src/Illuminate/Console/Scheduling/ManagesFrequencies.php @@ -15,9 +15,7 @@ trait ManagesFrequencies */ public function cron($expression) { - $this->expression = $expression; - - return $this; + return tap($this, fn () => $this->expression = $expression); } /** @@ -644,9 +642,7 @@ public function days($days) */ public function timezone($timezone) { - $this->timezone = $timezone; - - return $this; + return tap($this, fn () => $this->timezone = $timezone); } /** diff --git a/src/Illuminate/Container/ContextualBindingBuilder.php b/src/Illuminate/Container/ContextualBindingBuilder.php index 707b74c74beb..d1219f9e5ee8 100644 --- a/src/Illuminate/Container/ContextualBindingBuilder.php +++ b/src/Illuminate/Container/ContextualBindingBuilder.php @@ -49,9 +49,7 @@ public function __construct(Container $container, $concrete) */ public function needs($abstract) { - $this->needs = $abstract; - - return $this; + return tap($this, fn () => $this->needs = $abstract); } /** diff --git a/src/Illuminate/Contracts/Database/ModelIdentifier.php b/src/Illuminate/Contracts/Database/ModelIdentifier.php index 5742e8243ddf..d071277911b6 100644 --- a/src/Illuminate/Contracts/Database/ModelIdentifier.php +++ b/src/Illuminate/Contracts/Database/ModelIdentifier.php @@ -66,8 +66,6 @@ public function __construct($class, $id, array $relations, $connection) */ public function useCollectionClass(?string $collectionClass) { - $this->collectionClass = $collectionClass; - - return $this; + return tap($this, fn () => $this->collectionClass = $collectionClass); } } diff --git a/src/Illuminate/Cookie/CookieJar.php b/src/Illuminate/Cookie/CookieJar.php index 9eedc7de0f71..aca27a23dd68 100755 --- a/src/Illuminate/Cookie/CookieJar.php +++ b/src/Illuminate/Cookie/CookieJar.php @@ -213,9 +213,7 @@ protected function getPathAndDomain($path, $domain, $secure = null, $sameSite = */ public function setDefaultPathAndDomain($path, $domain, $secure = false, $sameSite = null) { - [$this->path, $this->domain, $this->secure, $this->sameSite] = [$path, $domain, $secure, $sameSite]; - - return $this; + return tap($this, fn () => [$this->path, $this->domain, $this->secure, $this->sameSite] = [$path, $domain, $secure, $sameSite]); } /** @@ -235,8 +233,6 @@ public function getQueuedCookies() */ public function flushQueuedCookies() { - $this->queued = []; - - return $this; + return tap($this, fn () => $this->queued = []); } } diff --git a/src/Illuminate/Database/Capsule/Manager.php b/src/Illuminate/Database/Capsule/Manager.php index cfc47eb5abcf..6dbf199c98f8 100755 --- a/src/Illuminate/Database/Capsule/Manager.php +++ b/src/Illuminate/Database/Capsule/Manager.php @@ -150,9 +150,7 @@ public function bootEloquent() */ public function setFetchMode($fetchMode) { - $this->container['config']['database.fetch'] = $fetchMode; - - return $this; + return tap($this, fn () => $this->container['config']['database.fetch'] = $fetchMode); } /** diff --git a/src/Illuminate/Database/Concerns/BuildsQueries.php b/src/Illuminate/Database/Concerns/BuildsQueries.php index cf1f6e2db925..ae117f0a4eff 100644 --- a/src/Illuminate/Database/Concerns/BuildsQueries.php +++ b/src/Illuminate/Database/Concerns/BuildsQueries.php @@ -572,8 +572,6 @@ protected function cursorPaginator($items, $perPage, $cursor, $options) */ public function tap($callback) { - $callback($this); - - return $this; + return tap($this, $callback(...)); } } diff --git a/src/Illuminate/Database/Connection.php b/src/Illuminate/Database/Connection.php index 3c791acbceb4..e6ffa9dae290 100755 --- a/src/Illuminate/Database/Connection.php +++ b/src/Illuminate/Database/Connection.php @@ -1028,9 +1028,7 @@ public function disconnect() */ public function beforeStartingTransaction(Closure $callback) { - $this->beforeStartingTransaction[] = $callback; - - return $this; + return tap($this, fn () => $this->beforeStartingTransaction[] = $callback); } /** @@ -1041,9 +1039,7 @@ public function beforeStartingTransaction(Closure $callback) */ public function beforeExecuting(Closure $callback) { - $this->beforeExecutingCallbacks[] = $callback; - - return $this; + return tap($this, fn () => $this->beforeExecutingCallbacks[] = $callback); } /** @@ -1192,9 +1188,7 @@ public function recordsHaveBeenModified($value = true) */ public function setRecordModificationState(bool $value) { - $this->recordsModified = $value; - - return $this; + return tap($this, fn () => $this->recordsModified = $value); } /** @@ -1215,9 +1209,7 @@ public function forgetRecordModificationState() */ public function useWriteConnectionWhenReading($value = true) { - $this->readOnWriteConnection = $value; - - return $this; + return tap($this, fn () => $this->readOnWriteConnection = $value); } /** @@ -1300,9 +1292,7 @@ public function setPdo($pdo) */ public function setReadPdo($pdo) { - $this->readPdo = $pdo; - - return $this; + return tap($this, fn () => $this->readPdo = $pdo); } /** @@ -1313,9 +1303,7 @@ public function setReadPdo($pdo) */ public function setReconnector(callable $reconnector) { - $this->reconnector = $reconnector; - - return $this; + return tap($this, fn () => $this->reconnector = $reconnector); } /** @@ -1387,9 +1375,7 @@ public function getQueryGrammar() */ public function setQueryGrammar(Query\Grammars\Grammar $grammar) { - $this->queryGrammar = $grammar; - - return $this; + return tap($this, fn () => $this->queryGrammar = $grammar); } /** @@ -1410,9 +1396,7 @@ public function getSchemaGrammar() */ public function setSchemaGrammar(Schema\Grammars\Grammar $grammar) { - $this->schemaGrammar = $grammar; - - return $this; + return tap($this, fn () => $this->schemaGrammar = $grammar); } /** @@ -1433,9 +1417,7 @@ public function getPostProcessor() */ public function setPostProcessor(Processor $processor) { - $this->postProcessor = $processor; - - return $this; + return tap($this, fn () => $this->postProcessor = $processor); } /** @@ -1456,9 +1438,7 @@ public function getEventDispatcher() */ public function setEventDispatcher(Dispatcher $events) { - $this->events = $events; - - return $this; + return tap($this, fn () => $this->events = $events); } /** @@ -1479,9 +1459,7 @@ public function unsetEventDispatcher() */ public function setTransactionManager($manager) { - $this->transactionsManager = $manager; - - return $this; + return tap($this, fn () => $this->transactionsManager = $manager); } /** @@ -1588,9 +1566,7 @@ public function getDatabaseName() */ public function setDatabaseName($database) { - $this->database = $database; - - return $this; + return tap($this, fn () => $this->database = $database); } /** @@ -1601,9 +1577,7 @@ public function setDatabaseName($database) */ public function setReadWriteType($readWriteType) { - $this->readWriteType = $readWriteType; - - return $this; + return tap($this, fn () => $this->readWriteType = $readWriteType); } /** diff --git a/src/Illuminate/Database/DatabaseManager.php b/src/Illuminate/Database/DatabaseManager.php index 89f644cb9214..85cb0f58448d 100755 --- a/src/Illuminate/Database/DatabaseManager.php +++ b/src/Illuminate/Database/DatabaseManager.php @@ -452,9 +452,7 @@ public function setReconnector(callable $reconnector) */ public function setApplication($app) { - $this->app = $app; - - return $this; + return tap($this, fn () => $this->app = $app); } /** diff --git a/src/Illuminate/Database/Eloquent/BroadcastableModelEventOccurred.php b/src/Illuminate/Database/Eloquent/BroadcastableModelEventOccurred.php index ed29fbca2c29..6076ce438bad 100644 --- a/src/Illuminate/Database/Eloquent/BroadcastableModelEventOccurred.php +++ b/src/Illuminate/Database/Eloquent/BroadcastableModelEventOccurred.php @@ -117,9 +117,7 @@ public function broadcastWith() */ public function onChannels(array $channels) { - $this->channels = $channels; - - return $this; + return tap($this, fn () => $this->channels = $channels); } /** diff --git a/src/Illuminate/Database/Eloquent/Builder.php b/src/Illuminate/Database/Eloquent/Builder.php index e731a1d4bbad..54b2fbbe8588 100755 --- a/src/Illuminate/Database/Eloquent/Builder.php +++ b/src/Illuminate/Database/Eloquent/Builder.php @@ -882,9 +882,7 @@ protected function isNestedUnder($relation, $name) */ public function afterQuery(Closure $callback) { - $this->afterQueryCallbacks[] = $callback; - - return $this; + return tap($this, fn () => $this->afterQueryCallbacks[] = $callback); } /** @@ -1774,9 +1772,7 @@ protected function addNestedWiths($name, $results) */ public function withCasts($casts) { - $this->model->mergeCasts($casts); - - return $this; + return tap($this, fn () => $this->model->mergeCasts($casts)); } /** @@ -1824,9 +1820,7 @@ public function getQuery() */ public function setQuery($query) { - $this->query = $query; - - return $this; + return tap($this, fn () => $this->query = $query); } /** @@ -1857,9 +1851,7 @@ public function getEagerLoads() */ public function setEagerLoads(array $eagerLoad) { - $this->eagerLoad = $eagerLoad; - - return $this; + return tap($this, fn () => $this->eagerLoad = $eagerLoad); } /** diff --git a/src/Illuminate/Database/Eloquent/Casts/Attribute.php b/src/Illuminate/Database/Eloquent/Casts/Attribute.php index 4fe2d807b690..98926fac8fa3 100644 --- a/src/Illuminate/Database/Eloquent/Casts/Attribute.php +++ b/src/Illuminate/Database/Eloquent/Casts/Attribute.php @@ -86,9 +86,7 @@ public static function set(callable $set) */ public function withoutObjectCaching() { - $this->withObjectCaching = false; - - return $this; + return tap($this, fn () => $this->withObjectCaching = false); } /** @@ -98,8 +96,6 @@ public function withoutObjectCaching() */ public function shouldCache() { - $this->withCaching = true; - - return $this; + return tap($this, fn () => $this->withCaching = true); } } diff --git a/src/Illuminate/Database/Eloquent/Collection.php b/src/Illuminate/Database/Eloquent/Collection.php index 022e27dcc6c2..79171df5a8b3 100755 --- a/src/Illuminate/Database/Eloquent/Collection.php +++ b/src/Illuminate/Database/Eloquent/Collection.php @@ -289,12 +289,11 @@ protected function loadMissingRelation(self $models, array $path) */ public function loadMorph($relation, $relations) { - $this->pluck($relation) + return tap($this) + ->pluck($relation) ->filter() ->groupBy(fn ($model) => get_class($model)) ->each(fn ($models, $className) => static::make($models)->load($relations[$className] ?? [])); - - return $this; } /** @@ -306,12 +305,11 @@ public function loadMorph($relation, $relations) */ public function loadMorphCount($relation, $relations) { - $this->pluck($relation) + return tap($this) + ->pluck($relation) ->filter() ->groupBy(fn ($model) => get_class($model)) ->each(fn ($models, $className) => static::make($models)->loadCount($relations[$className] ?? [])); - - return $this; } /** diff --git a/src/Illuminate/Database/Eloquent/Concerns/GuardsAttributes.php b/src/Illuminate/Database/Eloquent/Concerns/GuardsAttributes.php index a81337729c7f..97980bf05cc4 100644 --- a/src/Illuminate/Database/Eloquent/Concerns/GuardsAttributes.php +++ b/src/Illuminate/Database/Eloquent/Concerns/GuardsAttributes.php @@ -50,9 +50,7 @@ public function getFillable() */ public function fillable(array $fillable) { - $this->fillable = $fillable; - - return $this; + return tap($this, fn () => $this->fillable = $fillable); } /** @@ -63,9 +61,7 @@ public function fillable(array $fillable) */ public function mergeFillable(array $fillable) { - $this->fillable = array_values(array_unique(array_merge($this->fillable, $fillable))); - - return $this; + return tap($this, fn () => $this->fillable = array_values(array_unique(array_merge($this->fillable, $fillable)))); } /** @@ -88,9 +84,7 @@ public function getGuarded() */ public function guard(array $guarded) { - $this->guarded = $guarded; - - return $this; + return tap($this, fn () => $this->guarded = $guarded); } /** @@ -101,9 +95,7 @@ public function guard(array $guarded) */ public function mergeGuarded(array $guarded) { - $this->guarded = array_values(array_unique(array_merge($this->guarded, $guarded))); - - return $this; + return tap($this, fn () => $this->guarded = array_values(array_unique(array_merge($this->guarded, $guarded)))); } /** diff --git a/src/Illuminate/Database/Eloquent/Concerns/HasAttributes.php b/src/Illuminate/Database/Eloquent/Concerns/HasAttributes.php index 30a99e68fb8e..375a78b10310 100644 --- a/src/Illuminate/Database/Eloquent/Concerns/HasAttributes.php +++ b/src/Illuminate/Database/Eloquent/Concerns/HasAttributes.php @@ -1583,9 +1583,7 @@ public function getDateFormat() */ public function setDateFormat($format) { - $this->dateFormat = $format; - - return $this; + return tap($this, fn () => $this->dateFormat = $format); } /** @@ -1983,9 +1981,7 @@ public function only($attributes) */ public function syncOriginal() { - $this->original = $this->getAttributes(); - - return $this; + return tap($this, fn () => $this->original = $this->getAttributes()); } /** @@ -2025,9 +2021,7 @@ public function syncOriginalAttributes($attributes) */ public function syncChanges() { - $this->changes = $this->getDirty(); - - return $this; + return tap($this, fn () => $this->changes = $this->getDirty()); } /** @@ -2061,9 +2055,7 @@ public function isClean($attributes = null) */ public function discardChanges() { - [$this->attributes, $this->changes] = [$this->original, []]; - - return $this; + return tap($this, fn () => [$this->attributes, $this->changes] = [$this->original, []]); } /** @@ -2273,9 +2265,7 @@ public function getAppends() */ public function setAppends(array $appends) { - $this->appends = $appends; - - return $this; + return tap($this, fn () => $this->appends = $appends); } /** diff --git a/src/Illuminate/Database/Eloquent/Concerns/HasEvents.php b/src/Illuminate/Database/Eloquent/Concerns/HasEvents.php index 46376214d5eb..1e1cb2c2659b 100644 --- a/src/Illuminate/Database/Eloquent/Concerns/HasEvents.php +++ b/src/Illuminate/Database/Eloquent/Concerns/HasEvents.php @@ -148,9 +148,7 @@ public function getObservableEvents() */ public function setObservableEvents(array $observables) { - $this->observables = $observables; - - return $this; + return tap($this, fn () => $this->observables = $observables); } /** diff --git a/src/Illuminate/Database/Eloquent/Concerns/HasRelationships.php b/src/Illuminate/Database/Eloquent/Concerns/HasRelationships.php index 0664e80780bb..fc751de969ca 100644 --- a/src/Illuminate/Database/Eloquent/Concerns/HasRelationships.php +++ b/src/Illuminate/Database/Eloquent/Concerns/HasRelationships.php @@ -915,9 +915,7 @@ public function relationLoaded($key) */ public function setRelation($relation, $value) { - $this->relations[$relation] = $value; - - return $this; + return tap($this, fn () => $this->relations[$relation] = $value); } /** @@ -941,9 +939,7 @@ public function unsetRelation($relation) */ public function setRelations(array $relations) { - $this->relations = $relations; - - return $this; + return tap($this, fn () => $this->relations = $relations); } /** @@ -965,9 +961,7 @@ public function withoutRelations() */ public function unsetRelations() { - $this->relations = []; - - return $this; + return tap($this, fn () => $this->relations = []); } /** @@ -988,8 +982,6 @@ public function getTouchedRelations() */ public function setTouchedRelations(array $touches) { - $this->touches = $touches; - - return $this; + return tap($this, fn () => $this->touches = $touches); } } diff --git a/src/Illuminate/Database/Eloquent/Concerns/HasTimestamps.php b/src/Illuminate/Database/Eloquent/Concerns/HasTimestamps.php index 47044238df16..c37b30b65230 100644 --- a/src/Illuminate/Database/Eloquent/Concerns/HasTimestamps.php +++ b/src/Illuminate/Database/Eloquent/Concerns/HasTimestamps.php @@ -86,9 +86,7 @@ public function updateTimestamps() */ public function setCreatedAt($value) { - $this->{$this->getCreatedAtColumn()} = $value; - - return $this; + return tap($this, fn () => $this->{$this->getCreatedAtColumn()} = $value); } /** @@ -99,9 +97,7 @@ public function setCreatedAt($value) */ public function setUpdatedAt($value) { - $this->{$this->getUpdatedAtColumn()} = $value; - - return $this; + return tap($this, fn () => $this->{$this->getUpdatedAtColumn()} = $value); } /** diff --git a/src/Illuminate/Database/Eloquent/Concerns/HidesAttributes.php b/src/Illuminate/Database/Eloquent/Concerns/HidesAttributes.php index c124fc60324e..8a2ec7350ed3 100644 --- a/src/Illuminate/Database/Eloquent/Concerns/HidesAttributes.php +++ b/src/Illuminate/Database/Eloquent/Concerns/HidesAttributes.php @@ -36,9 +36,7 @@ public function getHidden() */ public function setHidden(array $hidden) { - $this->hidden = $hidden; - - return $this; + return tap($this, fn () => $this->hidden = $hidden); } /** @@ -59,9 +57,7 @@ public function getVisible() */ public function setVisible(array $visible) { - $this->visible = $visible; - - return $this; + return tap($this, fn () => $this->visible = $visible); } /** diff --git a/src/Illuminate/Database/Eloquent/Factories/Relationship.php b/src/Illuminate/Database/Eloquent/Factories/Relationship.php index 3eb62da38a6e..d05e66fcfc3b 100644 --- a/src/Illuminate/Database/Eloquent/Factories/Relationship.php +++ b/src/Illuminate/Database/Eloquent/Factories/Relationship.php @@ -68,8 +68,6 @@ public function createFor(Model $parent) */ public function recycle($recycle) { - $this->factory = $this->factory->recycle($recycle); - - return $this; + return tap($this, fn () => $this->factory = $this->factory->recycle($recycle)); } } diff --git a/src/Illuminate/Database/Eloquent/Model.php b/src/Illuminate/Database/Eloquent/Model.php index dc45e194ee53..b9a8f03a9077 100644 --- a/src/Illuminate/Database/Eloquent/Model.php +++ b/src/Illuminate/Database/Eloquent/Model.php @@ -770,9 +770,7 @@ public function loadMissing($relations) */ public function loadAggregate($relations, $column, $function = null) { - $this->newCollection([$this])->loadAggregate($relations, $column, $function); - - return $this; + return tap($this, fn () => $this->newCollection([$this])->loadAggregate($relations, $column, $function)); } /** @@ -1736,9 +1734,7 @@ public function refresh() || (is_object($relation) && in_array(AsPivot::class, class_uses_recursive($relation), true)); })->keys()->all()); - $this->syncOriginal(); - - return $this; + return tap($this)->syncOriginal(); } /** @@ -1834,9 +1830,7 @@ public function getConnectionName() */ public function setConnection($name) { - $this->connection = $name; - - return $this; + return tap($this, fn () => $this->connection = $name); } /** @@ -1899,9 +1893,7 @@ public function getTable() */ public function setTable($table) { - $this->table = $table; - - return $this; + return tap($this, fn () => $this->table = $table); } /** @@ -1922,9 +1914,7 @@ public function getKeyName() */ public function setKeyName($key) { - $this->primaryKey = $key; - - return $this; + return tap($this, fn () => $this->primaryKey = $key); } /** @@ -1955,9 +1945,7 @@ public function getKeyType() */ public function setKeyType($type) { - $this->keyType = $type; - - return $this; + return tap($this, fn () => $this->keyType = $type); } /** @@ -1978,9 +1966,7 @@ public function getIncrementing() */ public function setIncrementing($value) { - $this->incrementing = $value; - - return $this; + return tap($this, fn () => $this->incrementing = $value); } /** @@ -2193,9 +2179,7 @@ public function getPerPage() */ public function setPerPage($perPage) { - $this->perPage = $perPage; - - return $this; + return tap($this, fn () => $this->perPage = $perPage); } /** @@ -2399,9 +2383,7 @@ public function __toString() */ public function escapeWhenCastingToString($escape = true) { - $this->escapeWhenCastingToString = $escape; - - return $this; + return tap($this, fn () => $this->escapeWhenCastingToString = $escape); } /** diff --git a/src/Illuminate/Database/Eloquent/Relations/BelongsToMany.php b/src/Illuminate/Database/Eloquent/Relations/BelongsToMany.php index 6a4e5dae4d68..7002384b8d8d 100755 --- a/src/Illuminate/Database/Eloquent/Relations/BelongsToMany.php +++ b/src/Illuminate/Database/Eloquent/Relations/BelongsToMany.php @@ -331,9 +331,7 @@ public function getPivotClass() */ public function using($class) { - $this->using = $class; - - return $this; + return tap($this, fn () => $this->using = $class); } /** @@ -344,9 +342,7 @@ public function using($class) */ public function as($accessor) { - $this->accessor = $accessor; - - return $this; + return tap($this, fn () => $this->accessor = $accessor); } /** diff --git a/src/Illuminate/Database/Eloquent/Relations/Concerns/AsPivot.php b/src/Illuminate/Database/Eloquent/Relations/Concerns/AsPivot.php index afd328a7ea94..3e05ad61a1e2 100644 --- a/src/Illuminate/Database/Eloquent/Relations/Concerns/AsPivot.php +++ b/src/Illuminate/Database/Eloquent/Relations/Concerns/AsPivot.php @@ -229,9 +229,7 @@ public function setPivotKeys($foreignKey, $relatedKey) */ public function setRelatedModel(?Model $related = null) { - $this->pivotRelated = $related; - - return $this; + return tap($this, fn () => $this->pivotRelated = $related); } /** diff --git a/src/Illuminate/Database/Eloquent/Relations/Concerns/SupportsDefaultModels.php b/src/Illuminate/Database/Eloquent/Relations/Concerns/SupportsDefaultModels.php index 74e758f58571..499b9bd19910 100644 --- a/src/Illuminate/Database/Eloquent/Relations/Concerns/SupportsDefaultModels.php +++ b/src/Illuminate/Database/Eloquent/Relations/Concerns/SupportsDefaultModels.php @@ -31,9 +31,7 @@ abstract protected function newRelatedInstanceFor(Model $parent); */ public function withDefault($callback = true) { - $this->withDefault = $callback; - - return $this; + return tap($this, fn () => $this->withDefault = $callback); } /** diff --git a/src/Illuminate/Database/Eloquent/Relations/Concerns/SupportsInverseRelations.php b/src/Illuminate/Database/Eloquent/Relations/Concerns/SupportsInverseRelations.php index c7140d0a31e0..bb1df2c5f310 100644 --- a/src/Illuminate/Database/Eloquent/Relations/Concerns/SupportsInverseRelations.php +++ b/src/Illuminate/Database/Eloquent/Relations/Concerns/SupportsInverseRelations.php @@ -150,8 +150,6 @@ public function withoutInverse() */ public function withoutChaperone() { - $this->inverseRelationship = null; - - return $this; + return tap($this, fn () => $this->inverseRelationship = null); } } diff --git a/src/Illuminate/Database/Eloquent/Relations/HasOneOrManyThrough.php b/src/Illuminate/Database/Eloquent/Relations/HasOneOrManyThrough.php index 5ae9204fd144..b01872436bbd 100644 --- a/src/Illuminate/Database/Eloquent/Relations/HasOneOrManyThrough.php +++ b/src/Illuminate/Database/Eloquent/Relations/HasOneOrManyThrough.php @@ -155,9 +155,7 @@ public function throughParentSoftDeletes() */ public function withTrashedParents() { - $this->query->withoutGlobalScope('SoftDeletableHasManyThrough'); - - return $this; + return tap($this, fn () => $this->query->withoutGlobalScope('SoftDeletableHasManyThrough')); } /** @inheritDoc */ diff --git a/src/Illuminate/Database/Eloquent/Relations/MorphPivot.php b/src/Illuminate/Database/Eloquent/Relations/MorphPivot.php index 6a3f395e73a6..11de5c6e2551 100644 --- a/src/Illuminate/Database/Eloquent/Relations/MorphPivot.php +++ b/src/Illuminate/Database/Eloquent/Relations/MorphPivot.php @@ -92,9 +92,7 @@ public function getMorphType() */ public function setMorphType($morphType) { - $this->morphType = $morphType; - - return $this; + return tap($this, fn () => $this->morphType = $morphType); } /** @@ -105,9 +103,7 @@ public function setMorphType($morphType) */ public function setMorphClass($morphClass) { - $this->morphClass = $morphClass; - - return $this; + return tap($this, fn () => $this->morphClass = $morphClass); } /** diff --git a/src/Illuminate/Database/Grammar.php b/src/Illuminate/Database/Grammar.php index 8dd9bc353ef4..d340bfecb567 100755 --- a/src/Illuminate/Database/Grammar.php +++ b/src/Illuminate/Database/Grammar.php @@ -296,9 +296,7 @@ public function getTablePrefix() */ public function setTablePrefix($prefix) { - $this->tablePrefix = $prefix; - - return $this; + return tap($this, fn () => $this->tablePrefix = $prefix); } /** @@ -309,8 +307,6 @@ public function setTablePrefix($prefix) */ public function setConnection($connection) { - $this->connection = $connection; - - return $this; + return tap($this, fn () => $this->connection = $connection); } } diff --git a/src/Illuminate/Database/Migrations/Migrator.php b/src/Illuminate/Database/Migrations/Migrator.php index 1a0d5dd9ea33..09094a101124 100755 --- a/src/Illuminate/Database/Migrations/Migrator.php +++ b/src/Illuminate/Database/Migrations/Migrator.php @@ -719,9 +719,7 @@ public function getFilesystem() */ public function setOutput(OutputInterface $output) { - $this->output = $output; - - return $this; + return tap($this, fn () => $this->output = $output); } /** diff --git a/src/Illuminate/Database/Query/Builder.php b/src/Illuminate/Database/Query/Builder.php index b41915b58f0a..956375d5863a 100755 --- a/src/Illuminate/Database/Query/Builder.php +++ b/src/Illuminate/Database/Query/Builder.php @@ -353,9 +353,7 @@ public function fromRaw($expression, $bindings = []) { $this->from = new Expression($expression); - $this->addBinding($bindings, 'from'); - - return $this; + return tap($this)->addBinding($bindings, 'from'); } /** @@ -494,9 +492,7 @@ public function from($table, $as = null) */ public function useIndex($index) { - $this->indexHint = new IndexHint('hint', $index); - - return $this; + return tap($this, fn () => $this->indexHint = new IndexHint('hint', $index)); } /** @@ -507,9 +503,7 @@ public function useIndex($index) */ public function forceIndex($index) { - $this->indexHint = new IndexHint('force', $index); - - return $this; + return tap($this, fn () => $this->indexHint = new IndexHint('force', $index)); } /** @@ -520,9 +514,7 @@ public function forceIndex($index) */ public function ignoreIndex($index) { - $this->indexHint = new IndexHint('ignore', $index); - - return $this; + return tap($this, fn () => $this->indexHint = new IndexHint('ignore', $index)); } /** @@ -1107,9 +1099,7 @@ public function whereRaw($sql, $bindings = [], $boolean = 'and') { $this->wheres[] = ['type' => 'raw', 'sql' => $sql, 'boolean' => $boolean]; - $this->addBinding((array) $bindings, 'where'); - - return $this; + return tap($this)->addBinding((array) $bindings, 'where'); } /** @@ -1144,9 +1134,7 @@ public function whereLike($column, $value, $caseSensitive = false, $boolean = 'a $value = $this->grammar->prepareWhereLikeBinding($value, $caseSensitive); } - $this->addBinding($value); - - return $this; + return tap($this)->addBinding($value); } /** @@ -1229,9 +1217,7 @@ public function whereIn($column, $values, $boolean = 'and', $not = false) // Finally, we'll add a binding for each value unless that value is an expression // in which case we will just skip over it since it will be the query as a raw // string and not as a parameterized place-holder to be replaced by the PDO. - $this->addBinding($this->cleanBindings($values), 'where'); - - return $this; + return tap($this)->addBinding($this->cleanBindings($values), 'where'); } /** @@ -1397,9 +1383,7 @@ public function whereBetween($column, iterable $values, $boolean = 'and', $not = $this->wheres[] = compact('type', 'column', 'values', 'boolean', 'not'); - $this->addBinding(array_slice($this->cleanBindings(Arr::flatten($values)), 0, 2), 'where'); - - return $this; + return tap($this)->addBinding(array_slice($this->cleanBindings(Arr::flatten($values)), 0, 2), 'where'); } /** @@ -1844,9 +1828,7 @@ protected function whereSub($column, $operator, $callback, $boolean) 'type', 'column', 'operator', 'query', 'boolean' ); - $this->addBinding($query->getBindings(), 'where'); - - return $this; + return tap($this)->addBinding($query->getBindings(), 'where'); } /** @@ -1922,9 +1904,7 @@ public function addWhereExistsQuery(self $query, $boolean = 'and', $not = false) $this->wheres[] = compact('type', 'query', 'boolean'); - $this->addBinding($query->getBindings(), 'where'); - - return $this; + return tap($this)->addBinding($query->getBindings(), 'where'); } /** @@ -1948,9 +1928,7 @@ public function whereRowValues($columns, $operator, $values, $boolean = 'and') $this->wheres[] = compact('type', 'columns', 'operator', 'values', 'boolean'); - $this->addBinding($this->cleanBindings($values)); - - return $this; + return tap($this)->addBinding($this->cleanBindings($values)); } /** @@ -2263,9 +2241,7 @@ public function whereFullText($columns, $value, array $options = [], $boolean = $this->wheres[] = compact('type', 'columns', 'value', 'options', 'boolean'); - $this->addBinding($value); - - return $this; + return tap($this)->addBinding($value); } /** @@ -2410,9 +2386,7 @@ public function groupByRaw($sql, array $bindings = []) { $this->groups[] = new Expression($sql); - $this->addBinding($bindings, 'groupBy'); - - return $this; + return tap($this)->addBinding($bindings, 'groupBy'); } /** @@ -2590,9 +2564,7 @@ public function havingBetween($column, iterable $values, $boolean = 'and', $not $this->havings[] = compact('type', 'column', 'values', 'boolean', 'not'); - $this->addBinding(array_slice($this->cleanBindings(Arr::flatten($values)), 0, 2), 'having'); - - return $this; + return tap($this)->addBinding(array_slice($this->cleanBindings(Arr::flatten($values)), 0, 2), 'having'); } /** @@ -2609,9 +2581,7 @@ public function havingRaw($sql, array $bindings = [], $boolean = 'and') $this->havings[] = compact('type', 'sql', 'boolean'); - $this->addBinding($bindings, 'having'); - - return $this; + tap($this)->addBinding($bindings, 'having'); } /** @@ -2716,9 +2686,7 @@ public function orderByRaw($sql, $bindings = []) $this->{$this->unions ? 'unionOrders' : 'orders'}[] = compact('type', 'sql'); - $this->addBinding($bindings, $this->unions ? 'unionOrder' : 'order'); - - return $this; + return tap($this)->addBinding($bindings, $this->unions ? 'unionOrder' : 'order'); } /** @@ -2894,9 +2862,7 @@ public function union($query, $all = false) $this->unions[] = compact('query', 'all'); - $this->addBinding($query->getBindings(), 'union'); - - return $this; + return tap($this)->addBinding($query->getBindings(), 'union'); } /** @@ -2955,9 +2921,7 @@ public function sharedLock() */ public function beforeQuery(callable $callback) { - $this->beforeQueryCallbacks[] = $callback; - - return $this; + return tap($this, fn () => $this->beforeQueryCallbacks[] = $callback); } /** @@ -2982,9 +2946,7 @@ public function applyBeforeQueryCallbacks() */ public function afterQuery(Closure $callback) { - $this->afterQueryCallbacks[] = $callback; - - return $this; + return tap($this, fn () => $this->afterQueryCallbacks[] = $callback); } /** @@ -4229,9 +4191,7 @@ public function castBinding($value) */ public function mergeBindings(self $query) { - $this->bindings = array_merge_recursive($this->bindings, $query->bindings); - - return $this; + return tap($this, fn () => $this->bindings = array_merge_recursive($this->bindings, $query->bindings)); } /** @@ -4309,9 +4269,7 @@ public function getGrammar() */ public function useWritePdo() { - $this->useWritePdo = true; - - return $this; + return tap($this, fn () => $this->useWritePdo = true); } /** @@ -4392,9 +4350,7 @@ public function dump(...$args) */ public function dumpRawSql() { - dump($this->toRawSql()); - - return $this; + return tap($this, fn () => dump($this->toRawSql())); } /** diff --git a/src/Illuminate/Database/Schema/Builder.php b/src/Illuminate/Database/Schema/Builder.php index 9af11e2e0836..836308073fbf 100755 --- a/src/Illuminate/Database/Schema/Builder.php +++ b/src/Illuminate/Database/Schema/Builder.php @@ -602,9 +602,7 @@ public function getConnection() */ public function setConnection(Connection $connection) { - $this->connection = $connection; - - return $this; + return tap($this, fn () => $this->connection = $connection); } /** diff --git a/src/Illuminate/Database/Schema/SchemaState.php b/src/Illuminate/Database/Schema/SchemaState.php index d72085081487..0e1b6cf152c6 100644 --- a/src/Illuminate/Database/Schema/SchemaState.php +++ b/src/Illuminate/Database/Schema/SchemaState.php @@ -122,9 +122,7 @@ protected function getMigrationTable(): string */ public function withMigrationTable(string $table) { - $this->migrationTable = $table; - - return $this; + return tap($this, fn () => $this->migrationTable = $table); } /** @@ -135,8 +133,6 @@ public function withMigrationTable(string $table) */ public function handleOutputUsing(callable $output) { - $this->output = $output; - - return $this; + return tap($this, fn () => $this->output = $output); } } diff --git a/src/Illuminate/Database/Seeder.php b/src/Illuminate/Database/Seeder.php index bfb48aedf3b0..b396074ab5be 100755 --- a/src/Illuminate/Database/Seeder.php +++ b/src/Illuminate/Database/Seeder.php @@ -148,9 +148,7 @@ protected function resolve($class) */ public function setContainer(Container $container) { - $this->container = $container; - - return $this; + return tap($this, fn () => $this->container = $container); } /** @@ -161,9 +159,7 @@ public function setContainer(Container $container) */ public function setCommand(Command $command) { - $this->command = $command; - - return $this; + return tap($this, fn () => $this->command = $command); } /** diff --git a/src/Illuminate/Events/Dispatcher.php b/src/Illuminate/Events/Dispatcher.php index 5a3c9702e198..a9bcded9f8a2 100755 --- a/src/Illuminate/Events/Dispatcher.php +++ b/src/Illuminate/Events/Dispatcher.php @@ -738,9 +738,7 @@ protected function resolveQueue() */ public function setQueueResolver(callable $resolver) { - $this->queueResolver = $resolver; - - return $this; + return tap($this, fn () => $this->queueResolver = $resolver); } /** @@ -761,9 +759,7 @@ protected function resolveTransactionManager() */ public function setTransactionManagerResolver(callable $resolver) { - $this->transactionManagerResolver = $resolver; - - return $this; + return tap($this, fn () => $this->transactionManagerResolver = $resolver); } /** diff --git a/src/Illuminate/Events/QueuedClosure.php b/src/Illuminate/Events/QueuedClosure.php index 5c47b4fb1a05..e7b0c4fa9a62 100644 --- a/src/Illuminate/Events/QueuedClosure.php +++ b/src/Illuminate/Events/QueuedClosure.php @@ -64,9 +64,7 @@ public function __construct(Closure $closure) */ public function onConnection($connection) { - $this->connection = $connection; - - return $this; + return tap($this, fn () => $this->connection = $connection); } /** @@ -77,9 +75,7 @@ public function onConnection($connection) */ public function onQueue($queue) { - $this->queue = enum_value($queue); - - return $this; + return tap($this, fn () => $this->queue = enum_value($queue)); } /** @@ -90,9 +86,7 @@ public function onQueue($queue) */ public function delay($delay) { - $this->delay = $delay; - - return $this; + return tap($this, fn () => $this->delay = $delay); } /** @@ -103,9 +97,7 @@ public function delay($delay) */ public function catch(Closure $closure) { - $this->catchCallbacks[] = $closure; - - return $this; + return tap($this, fn () => $this->catchCallbacks[] = $closure); } /** diff --git a/src/Illuminate/Filesystem/FilesystemManager.php b/src/Illuminate/Filesystem/FilesystemManager.php index dfdab7c6e7f8..852831c32c24 100644 --- a/src/Illuminate/Filesystem/FilesystemManager.php +++ b/src/Illuminate/Filesystem/FilesystemManager.php @@ -343,9 +343,7 @@ protected function createFlysystem(FlysystemAdapter $adapter, array $config) */ public function set($name, $disk) { - $this->disks[$name] = $disk; - - return $this; + return tap($this, fn () => $this->disks[$name] = $disk); } /** @@ -416,9 +414,7 @@ public function purge($name = null) */ public function extend($driver, Closure $callback) { - $this->customCreators[$driver] = $callback; - - return $this; + return tap($this, fn () => $this->customCreators[$driver] = $callback); } /** @@ -429,9 +425,7 @@ public function extend($driver, Closure $callback) */ public function setApplication($app) { - $this->app = $app; - - return $this; + return tap($this, fn () => $this->app = $app); } /** diff --git a/src/Illuminate/Filesystem/LocalFilesystemAdapter.php b/src/Illuminate/Filesystem/LocalFilesystemAdapter.php index 37d0e6934872..60f1e3efe45c 100644 --- a/src/Illuminate/Filesystem/LocalFilesystemAdapter.php +++ b/src/Illuminate/Filesystem/LocalFilesystemAdapter.php @@ -81,9 +81,7 @@ public function temporaryUrl($path, $expiration, array $options = []) */ public function diskName(string $disk) { - $this->disk = $disk; - - return $this; + return tap($this, fn () => $this->disk = $disk); } /** diff --git a/src/Illuminate/Foundation/Application.php b/src/Illuminate/Foundation/Application.php index 86de6ce109bd..d130f019aa48 100755 --- a/src/Illuminate/Foundation/Application.php +++ b/src/Illuminate/Foundation/Application.php @@ -430,9 +430,7 @@ public function useAppPath($path) { $this->appPath = $path; - $this->instance('path', $path); - - return $this; + return tap($this)->instance('path', $path); } /** @@ -477,9 +475,7 @@ public function useBootstrapPath($path) { $this->bootstrapPath = $path; - $this->instance('path.bootstrap', $path); - - return $this; + return tap($this)->instance('path.bootstrap', $path); } /** @@ -503,9 +499,7 @@ public function useConfigPath($path) { $this->configPath = $path; - $this->instance('path.config', $path); - - return $this; + return tap($this)->instance('path.config', $path); } /** @@ -529,9 +523,7 @@ public function useDatabasePath($path) { $this->databasePath = $path; - $this->instance('path.database', $path); - - return $this; + return tap($this)->instance('path.database', $path); } /** @@ -555,9 +547,7 @@ public function useLangPath($path) { $this->langPath = $path; - $this->instance('path.lang', $path); - - return $this; + return tap($this)->instance('path.lang', $path); } /** @@ -581,9 +571,7 @@ public function usePublicPath($path) { $this->publicPath = $path; - $this->instance('path.public', $path); - - return $this; + return tap($this)->instance('path.public', $path); } /** @@ -615,9 +603,7 @@ public function useStoragePath($path) { $this->storagePath = $path; - $this->instance('path.storage', $path); - - return $this; + return tap($this)->instance('path.storage', $path); } /** @@ -676,9 +662,7 @@ public function environmentPath() */ public function useEnvironmentPath($path) { - $this->environmentPath = $path; - - return $this; + return tap($this, fn () => $this->environmentPath = $path); } /** @@ -689,9 +673,7 @@ public function useEnvironmentPath($path) */ public function loadEnvironmentFrom($file) { - $this->environmentFile = $file; - - return $this; + return tap($this, fn () => $this->environmentFile = $file); } /** @@ -1229,9 +1211,7 @@ public function shouldMergeFrameworkConfiguration() */ public function dontMergeFrameworkConfiguration() { - $this->mergeFrameworkConfiguration = false; - - return $this; + return tap($this, fn () => $this->mergeFrameworkConfiguration = false); } /** @@ -1351,9 +1331,7 @@ protected function normalizeCachePath($key, $default) */ public function addAbsoluteCachePathPrefix($prefix) { - $this->absoluteCachePathPrefixes[] = $prefix; - - return $this; + return tap($this, fn () => $this->absoluteCachePathPrefixes[] = $prefix); } /** @@ -1404,9 +1382,7 @@ public function abort($code, $message = '', array $headers = []) */ public function terminating($callback) { - $this->terminatingCallbacks[] = $callback; - - return $this; + return tap($this, fn () => $this->terminatingCallbacks[] = $callback); } /** diff --git a/src/Illuminate/Foundation/Bus/PendingChain.php b/src/Illuminate/Foundation/Bus/PendingChain.php index 3e6f8729ee2f..549b5834b597 100644 --- a/src/Illuminate/Foundation/Bus/PendingChain.php +++ b/src/Illuminate/Foundation/Bus/PendingChain.php @@ -77,9 +77,7 @@ public function __construct($job, $chain) */ public function onConnection($connection) { - $this->connection = $connection; - - return $this; + return tap($this, fn () => $this->connection = $connection); } /** @@ -90,9 +88,7 @@ public function onConnection($connection) */ public function onQueue($queue) { - $this->queue = enum_value($queue); - - return $this; + return tap($this, fn () => $this->queue = enum_value($queue)); } /** @@ -103,9 +99,7 @@ public function onQueue($queue) */ public function delay($delay) { - $this->delay = $delay; - - return $this; + return tap($this, fn () => $this->delay = $delay); } /** diff --git a/src/Illuminate/Foundation/Bus/PendingClosureDispatch.php b/src/Illuminate/Foundation/Bus/PendingClosureDispatch.php index 84cc14a7788c..589f732909cd 100644 --- a/src/Illuminate/Foundation/Bus/PendingClosureDispatch.php +++ b/src/Illuminate/Foundation/Bus/PendingClosureDispatch.php @@ -14,8 +14,6 @@ class PendingClosureDispatch extends PendingDispatch */ public function catch(Closure $callback) { - $this->job->onFailure($callback); - - return $this; + return tap($this, fn () => $this->job->onFailure($callback)); } } diff --git a/src/Illuminate/Foundation/Bus/PendingDispatch.php b/src/Illuminate/Foundation/Bus/PendingDispatch.php index 97a339a00946..73c6cd9a164b 100644 --- a/src/Illuminate/Foundation/Bus/PendingDispatch.php +++ b/src/Illuminate/Foundation/Bus/PendingDispatch.php @@ -43,9 +43,7 @@ public function __construct($job) */ public function onConnection($connection) { - $this->job->onConnection($connection); - - return $this; + return tap($this, fn () => $this->job->onConnection($connection)); } /** @@ -56,9 +54,7 @@ public function onConnection($connection) */ public function onQueue($queue) { - $this->job->onQueue($queue); - - return $this; + return tap($this, fn () => $this->job->onQueue($queue)); } /** @@ -69,9 +65,7 @@ public function onQueue($queue) */ public function allOnConnection($connection) { - $this->job->allOnConnection($connection); - - return $this; + return tap($this, fn () => $this->job->allOnConnection($connection)); } /** @@ -82,9 +76,7 @@ public function allOnConnection($connection) */ public function allOnQueue($queue) { - $this->job->allOnQueue($queue); - - return $this; + return tap($this, fn () => $this->job->allOnQueue($queue)); } /** @@ -95,9 +87,7 @@ public function allOnQueue($queue) */ public function delay($delay) { - $this->job->delay($delay); - - return $this; + return tap($this, fn () => $this->job->delay($delay)); } /** @@ -107,9 +97,7 @@ public function delay($delay) */ public function withoutDelay() { - $this->job->withoutDelay(); - - return $this; + return tap($this, fn () => $this->job->withoutDelay()); } /** @@ -119,9 +107,7 @@ public function withoutDelay() */ public function afterCommit() { - $this->job->afterCommit(); - - return $this; + return tap($this, fn () => $this->job->afterCommit()); } /** @@ -131,9 +117,7 @@ public function afterCommit() */ public function beforeCommit() { - $this->job->beforeCommit(); - - return $this; + return tap($this, fn () => $this->job->beforeCommit()); } /** @@ -144,9 +128,7 @@ public function beforeCommit() */ public function chain($chain) { - $this->job->chain($chain); - - return $this; + return tap($this, fn () => $this->job->chain($chain)); } /** @@ -156,9 +138,7 @@ public function chain($chain) */ public function afterResponse() { - $this->afterResponse = true; - - return $this; + return tap($this, fn () => $this->afterResponse = true); } /** @@ -185,9 +165,7 @@ protected function shouldDispatch() */ public function __call($method, $parameters) { - $this->job->{$method}(...$parameters); - - return $this; + return tap($this, fn () => $this->job->{$method}(...$parameters)); } /** diff --git a/src/Illuminate/Foundation/Configuration/ApplicationBuilder.php b/src/Illuminate/Foundation/Configuration/ApplicationBuilder.php index 1a9af1f3852c..7fe331766883 100644 --- a/src/Illuminate/Foundation/Configuration/ApplicationBuilder.php +++ b/src/Illuminate/Foundation/Configuration/ApplicationBuilder.php @@ -350,9 +350,7 @@ protected function withCommandRouting(array $paths) */ public function withSchedule(callable $callback) { - Artisan::starting(fn () => $callback($this->app->make(Schedule::class))); - - return $this; + return tap($this, fn () => Artisan::starting(fn () => $callback($this->app->make(Schedule::class)))); } /** @@ -420,9 +418,7 @@ public function withSingletons(array $singletons) */ public function registered(callable $callback) { - $this->app->registered($callback); - - return $this; + return tap($this, fn () => $this->app->registered($callback)); } /** @@ -433,9 +429,7 @@ public function registered(callable $callback) */ public function booting(callable $callback) { - $this->app->booting($callback); - - return $this; + return tap($this, fn () => $this->app->booting($callback)); } /** @@ -446,9 +440,7 @@ public function booting(callable $callback) */ public function booted(callable $callback) { - $this->app->booted($callback); - - return $this; + return tap($this, fn () => $this->app->booted($callback)); } /** diff --git a/src/Illuminate/Foundation/Configuration/Exceptions.php b/src/Illuminate/Foundation/Configuration/Exceptions.php index 532cb06d7e4f..20b3cbb02b07 100644 --- a/src/Illuminate/Foundation/Configuration/Exceptions.php +++ b/src/Illuminate/Foundation/Configuration/Exceptions.php @@ -48,9 +48,7 @@ public function reportable(callable $reportUsing) */ public function render(callable $using) { - $this->handler->renderable($using); - - return $this; + return tap($this, fn () => $this->handler->renderable($using)); } /** @@ -61,9 +59,7 @@ public function render(callable $using) */ public function renderable(callable $renderUsing) { - $this->handler->renderable($renderUsing); - - return $this; + return tap($this, fn () => $this->handler->renderable($renderUsing)); } /** @@ -74,9 +70,7 @@ public function renderable(callable $renderUsing) */ public function respond(callable $using) { - $this->handler->respondUsing($using); - - return $this; + return tap($this, fn () => $this->handler->respondUsing($using)); } /** @@ -87,9 +81,7 @@ public function respond(callable $using) */ public function throttle(callable $throttleUsing) { - $this->handler->throttleUsing($throttleUsing); - - return $this; + return tap($this, fn () => $this->handler->throttleUsing($throttleUsing)); } /** @@ -103,9 +95,7 @@ public function throttle(callable $throttleUsing) */ public function map($from, $to = null) { - $this->handler->map($from, $to); - - return $this; + return tap($this, fn () => $this->handler->map($from, $to)); } /** @@ -117,9 +107,7 @@ public function map($from, $to = null) */ public function level(string $type, string $level) { - $this->handler->level($type, $level); - - return $this; + return tap($this, fn () => $this->handler->level($type, $level)); } /** @@ -130,9 +118,7 @@ public function level(string $type, string $level) */ public function context(Closure $contextCallback) { - $this->handler->buildContextUsing($contextCallback); - - return $this; + return tap($this, fn () => $this->handler->buildContextUsing($contextCallback)); } /** @@ -157,9 +143,7 @@ public function dontReport(array|string $class) */ public function dontReportDuplicates() { - $this->handler->dontReportDuplicates(); - - return $this; + return tap($this, fn () => $this->handler->dontReportDuplicates()); } /** @@ -170,9 +154,7 @@ public function dontReportDuplicates() */ public function dontFlash(array|string $attributes) { - $this->handler->dontFlash($attributes); - - return $this; + return tap($this, fn () => $this->handler->dontFlash($attributes)); } /** @@ -183,9 +165,7 @@ public function dontFlash(array|string $attributes) */ public function shouldRenderJsonWhen(callable $callback) { - $this->handler->shouldRenderJsonWhen($callback); - - return $this; + return tap($this, fn () => $this->handler->shouldRenderJsonWhen($callback)); } /** @@ -196,8 +176,6 @@ public function shouldRenderJsonWhen(callable $callback) */ public function stopIgnoring(array|string $class) { - $this->handler->stopIgnoring($class); - - return $this; + return tap($this, fn () => $this->handler->stopIgnoring($class)); } } diff --git a/src/Illuminate/Foundation/Configuration/Middleware.php b/src/Illuminate/Foundation/Configuration/Middleware.php index f6bc12eb2e9e..bd70ebb08757 100644 --- a/src/Illuminate/Foundation/Configuration/Middleware.php +++ b/src/Illuminate/Foundation/Configuration/Middleware.php @@ -217,9 +217,7 @@ public function remove(array|string $middleware) */ public function replace(string $search, string $replace) { - $this->replacements[$search] = $replace; - - return $this; + return tap($this, fn () => $this->replacements[$search] = $replace); } /** @@ -230,9 +228,7 @@ public function replace(string $search, string $replace) */ public function use(array $middleware) { - $this->global = $middleware; - - return $this; + return tap($this, fn () => $this->global = $middleware); } /** @@ -244,9 +240,7 @@ public function use(array $middleware) */ public function group(string $group, array $middleware) { - $this->groups[$group] = $middleware; - - return $this; + return tap($this, fn () => $this->groups[$group] = $middleware); } /** @@ -310,9 +304,7 @@ public function removeFromGroup(string $group, array|string $middleware) */ public function replaceInGroup(string $group, string $search, string $replace) { - $this->groupReplacements[$group][$search] = $replace; - - return $this; + return tap($this, fn () => $this->groupReplacements[$group][$search] = $replace); } /** @@ -384,9 +376,7 @@ protected function modifyGroup(string $group, array|string $append, array|string */ public function pages(array $middleware) { - $this->pageMiddleware = $middleware; - - return $this; + return tap($this, fn () => $this->pageMiddleware = $middleware); } /** @@ -397,9 +387,7 @@ public function pages(array $middleware) */ public function alias(array $aliases) { - $this->customAliases = $aliases; - - return $this; + return tap($this, fn () => $this->customAliases = $aliases); } /** @@ -410,9 +398,7 @@ public function alias(array $aliases) */ public function priority(array $priority) { - $this->priority = $priority; - - return $this; + return tap($this, fn () => $this->priority = $priority); } /** @@ -424,9 +410,7 @@ public function priority(array $priority) */ public function prependToPriorityList($before, $prepend) { - $this->prependPriority[$prepend] = $before; - - return $this; + return tap($this, fn () => $this->prependPriority[$prepend] = $before); } /** @@ -438,9 +422,7 @@ public function prependToPriorityList($before, $prepend) */ public function appendToPriorityList($after, $append) { - $this->appendPriority[$append] = $after; - - return $this; + return tap($this, fn () => $this->appendPriority[$append] = $after); } /** @@ -584,9 +566,7 @@ public function redirectTo(callable|string|null $guests = null, callable|string| */ public function encryptCookies(array $except = []) { - EncryptCookies::except($except); - - return $this; + return tap($this, fn () => EncryptCookies::except($except)); } /** @@ -597,9 +577,7 @@ public function encryptCookies(array $except = []) */ public function validateCsrfTokens(array $except = []) { - ValidateCsrfToken::except($except); - - return $this; + return tap($this, fn () => ValidateCsrfToken::except($except)); } /** @@ -610,9 +588,7 @@ public function validateCsrfTokens(array $except = []) */ public function validateSignatures(array $except = []) { - ValidateSignature::except($except); - - return $this; + return tap($this, fn () => ValidateSignature::except($except)); } /** @@ -623,9 +599,7 @@ public function validateSignatures(array $except = []) */ public function convertEmptyStringsToNull(array $except = []) { - (new Collection($except))->each(fn (Closure $callback) => ConvertEmptyStringsToNull::skipWhen($callback)); - - return $this; + return tap($this, fn () => (new Collection($except))->each(fn (Closure $callback) => ConvertEmptyStringsToNull::skipWhen($callback))); } /** @@ -691,9 +665,7 @@ public function trustProxies(array|string|null $at = null, ?int $headers = null) */ public function preventRequestsDuringMaintenance(array $except = []) { - PreventRequestsDuringMaintenance::except($except); - - return $this; + return tap($this, fn () => PreventRequestsDuringMaintenance::except($except)); } /** @@ -703,9 +675,7 @@ public function preventRequestsDuringMaintenance(array $except = []) */ public function statefulApi() { - $this->statefulApi = true; - - return $this; + return tap($this, fn () => $this->statefulApi = true); } /** @@ -733,9 +703,7 @@ public function throttleApi($limiter = 'api', $redis = false) */ public function throttleWithRedis() { - $this->throttleWithRedis = true; - - return $this; + return tap($this, fn () => $this->throttleWithRedis = true); } /** @@ -745,9 +713,7 @@ public function throttleWithRedis() */ public function authenticateSessions() { - $this->authenticatedSessions = true; - - return $this; + return tap($this, fn () => $this->authenticatedSessions = true); } /** diff --git a/src/Illuminate/Foundation/Console/ClosureCommand.php b/src/Illuminate/Foundation/Console/ClosureCommand.php index 2c2eaf4d2744..bd3c63e99c56 100644 --- a/src/Illuminate/Foundation/Console/ClosureCommand.php +++ b/src/Illuminate/Foundation/Console/ClosureCommand.php @@ -89,9 +89,7 @@ public function purpose($description) */ public function describe($description) { - $this->setDescription($description); - - return $this; + return tap($this, fn () => $this->setDescription($description)); } /** diff --git a/src/Illuminate/Foundation/Console/DocsCommand.php b/src/Illuminate/Foundation/Console/DocsCommand.php index 1eea49070cc5..5eaccbf17a85 100644 --- a/src/Illuminate/Foundation/Console/DocsCommand.php +++ b/src/Illuminate/Foundation/Console/DocsCommand.php @@ -496,9 +496,7 @@ protected function isSearching() */ public function setVersion($version) { - $this->version = $version; - - return $this; + return tap($this, fn () => $this->version = $version); } /** @@ -509,9 +507,7 @@ public function setVersion($version) */ public function setUrlOpener($opener) { - $this->urlOpener = $opener; - - return $this; + return tap($this, fn () => $this->urlOpener = $opener); } /** @@ -522,8 +518,6 @@ public function setUrlOpener($opener) */ public function setSystemOsFamily($family) { - $this->systemOsFamily = $family; - - return $this; + return tap($this, fn () => $this->systemOsFamily = $family); } } diff --git a/src/Illuminate/Foundation/Console/Kernel.php b/src/Illuminate/Foundation/Console/Kernel.php index d67931a6f07c..e0f09ac69ad0 100644 --- a/src/Illuminate/Foundation/Console/Kernel.php +++ b/src/Illuminate/Foundation/Console/Kernel.php @@ -569,9 +569,7 @@ public function setArtisan($artisan) */ public function addCommands(array $commands) { - $this->commands = array_values(array_unique(array_merge($this->commands, $commands))); - - return $this; + return tap($this, fn () => $this->commands = array_values(array_unique(array_merge($this->commands, $commands)))); } /** @@ -582,9 +580,7 @@ public function addCommands(array $commands) */ public function addCommandPaths(array $paths) { - $this->commandPaths = array_values(array_unique(array_merge($this->commandPaths, $paths))); - - return $this; + return tap($this, fn () => $this->commandPaths = array_values(array_unique(array_merge($this->commandPaths, $paths)))); } /** @@ -595,9 +591,7 @@ public function addCommandPaths(array $paths) */ public function addCommandRoutePaths(array $paths) { - $this->commandRoutePaths = array_values(array_unique(array_merge($this->commandRoutePaths, $paths))); - - return $this; + return tap($this, fn () => $this->commandRoutePaths = array_values(array_unique(array_merge($this->commandRoutePaths, $paths)))); } /** diff --git a/src/Illuminate/Foundation/Events/PublishingStubs.php b/src/Illuminate/Foundation/Events/PublishingStubs.php index 914ff1e40d65..d64024dbaf39 100644 --- a/src/Illuminate/Foundation/Events/PublishingStubs.php +++ b/src/Illuminate/Foundation/Events/PublishingStubs.php @@ -33,8 +33,6 @@ public function __construct(array $stubs) */ public function add(string $path, string $name) { - $this->stubs[$path] = $name; - - return $this; + return tap($this, fn () => $this->stubs[$path] = $name); } } diff --git a/src/Illuminate/Foundation/Exceptions/Handler.php b/src/Illuminate/Foundation/Exceptions/Handler.php index 1238ccf6090f..953c7985ae6a 100644 --- a/src/Illuminate/Foundation/Exceptions/Handler.php +++ b/src/Illuminate/Foundation/Exceptions/Handler.php @@ -318,9 +318,7 @@ public function dontFlash(array|string $attributes) */ public function level($type, $level) { - $this->levels[$type] = $level; - - return $this; + return tap($this, fn () => $this->levels[$type] = $level); } /** @@ -550,9 +548,7 @@ protected function context() */ public function buildContextUsing(Closure $contextCallback) { - $this->contextCallbacks[] = $contextCallback; - - return $this; + return tap($this, fn () => $this->contextCallbacks[] = $contextCallback); } /** @@ -617,9 +613,7 @@ protected function finalizeRenderedResponse($request, $response, Throwable $e) */ public function respondUsing($callback) { - $this->finalizeResponseCallback = $callback; - - return $this; + return tap($this, fn () => $this->finalizeResponseCallback = $callback); } /** @@ -788,9 +782,7 @@ protected function shouldReturnJson($request, Throwable $e) */ public function shouldRenderJsonWhen($callback) { - $this->shouldRenderJsonWhenCallback = $callback; - - return $this; + return tap($this, fn () => $this->shouldRenderJsonWhenCallback = $callback); } /** @@ -1033,9 +1025,7 @@ public function renderForConsole($output, Throwable $e) */ public function dontReportDuplicates() { - $this->withoutDuplicates = true; - - return $this; + return tap($this, fn () => $this->withoutDuplicates = true); } /** diff --git a/src/Illuminate/Foundation/Exceptions/ReportableHandler.php b/src/Illuminate/Foundation/Exceptions/ReportableHandler.php index 06a6172f5c03..b1831ae5889e 100644 --- a/src/Illuminate/Foundation/Exceptions/ReportableHandler.php +++ b/src/Illuminate/Foundation/Exceptions/ReportableHandler.php @@ -75,8 +75,6 @@ public function handles(Throwable $e) */ public function stop() { - $this->shouldStop = true; - - return $this; + return tap($this, fn () => $this->shouldStop = true); } } diff --git a/src/Illuminate/Foundation/Http/FormRequest.php b/src/Illuminate/Foundation/Http/FormRequest.php index 87a1e2048555..89ddec1a77c4 100644 --- a/src/Illuminate/Foundation/Http/FormRequest.php +++ b/src/Illuminate/Foundation/Http/FormRequest.php @@ -273,9 +273,7 @@ public function attributes() */ public function setValidator(Validator $validator) { - $this->validator = $validator; - - return $this; + return tap($this, fn () => $this->validator = $validator); } /** @@ -286,9 +284,7 @@ public function setValidator(Validator $validator) */ public function setRedirector(Redirector $redirector) { - $this->redirector = $redirector; - - return $this; + return tap($this, fn () => $this->redirector = $redirector); } /** @@ -299,8 +295,6 @@ public function setRedirector(Redirector $redirector) */ public function setContainer(Container $container) { - $this->container = $container; - - return $this; + return tap($this, fn () => $this->container = $container); } } diff --git a/src/Illuminate/Foundation/Http/Kernel.php b/src/Illuminate/Foundation/Http/Kernel.php index 90c9fb010f4d..1e233d776509 100644 --- a/src/Illuminate/Foundation/Http/Kernel.php +++ b/src/Illuminate/Foundation/Http/Kernel.php @@ -695,8 +695,6 @@ public function getApplication() */ public function setApplication(Application $app) { - $this->app = $app; - - return $this; + return tap($this, fn () => $this->app = $app); } } diff --git a/src/Illuminate/Foundation/Support/Providers/RouteServiceProvider.php b/src/Illuminate/Foundation/Support/Providers/RouteServiceProvider.php index ad881b371193..0bdde4511dca 100644 --- a/src/Illuminate/Foundation/Support/Providers/RouteServiceProvider.php +++ b/src/Illuminate/Foundation/Support/Providers/RouteServiceProvider.php @@ -84,9 +84,7 @@ public function boot() */ protected function routes(Closure $routesCallback) { - $this->loadRoutesUsing = $routesCallback; - - return $this; + return tap($this, fn () => $this->loadRoutesUsing = $routesCallback); } /** diff --git a/src/Illuminate/Foundation/Testing/Concerns/InteractsWithAuthentication.php b/src/Illuminate/Foundation/Testing/Concerns/InteractsWithAuthentication.php index 9e8c0f5870b6..94df42cb4dc9 100644 --- a/src/Illuminate/Foundation/Testing/Concerns/InteractsWithAuthentication.php +++ b/src/Illuminate/Foundation/Testing/Concerns/InteractsWithAuthentication.php @@ -46,9 +46,7 @@ public function be(UserContract $user, $guard = null) */ public function assertAuthenticated($guard = null) { - $this->assertTrue($this->isAuthenticated($guard), 'The user is not authenticated'); - - return $this; + return tap($this)->assertTrue($this->isAuthenticated($guard), 'The user is not authenticated'); } /** @@ -59,9 +57,7 @@ public function assertAuthenticated($guard = null) */ public function assertGuest($guard = null) { - $this->assertFalse($this->isAuthenticated($guard), 'The user is authenticated'); - - return $this; + return tap($this)->assertFalse($this->isAuthenticated($guard), 'The user is authenticated'); } /** @@ -110,11 +106,9 @@ public function assertAuthenticatedAs($user, $guard = null) */ public function assertCredentials(array $credentials, $guard = null) { - $this->assertTrue( + return tap($this)->assertTrue( $this->hasCredentials($credentials, $guard), 'The given credentials are invalid.' ); - - return $this; } /** @@ -126,11 +120,9 @@ public function assertCredentials(array $credentials, $guard = null) */ public function assertInvalidCredentials(array $credentials, $guard = null) { - $this->assertFalse( + return tap($this)->assertFalse( $this->hasCredentials($credentials, $guard), 'The given credentials are valid.' ); - - return $this; } /** diff --git a/src/Illuminate/Foundation/Testing/Concerns/InteractsWithContainer.php b/src/Illuminate/Foundation/Testing/Concerns/InteractsWithContainer.php index c63a33164c25..d848b0ad87f9 100644 --- a/src/Illuminate/Foundation/Testing/Concerns/InteractsWithContainer.php +++ b/src/Illuminate/Foundation/Testing/Concerns/InteractsWithContainer.php @@ -103,9 +103,7 @@ protected function spy($abstract, ?Closure $mock = null) */ protected function forgetMock($abstract) { - $this->app->forgetInstance($abstract); - - return $this; + return tap($this, fn () => $this->app->forgetInstance($abstract)); } /** diff --git a/src/Illuminate/Foundation/Testing/Concerns/InteractsWithDatabase.php b/src/Illuminate/Foundation/Testing/Concerns/InteractsWithDatabase.php index c4744b170d07..dc0c6b82fb70 100644 --- a/src/Illuminate/Foundation/Testing/Concerns/InteractsWithDatabase.php +++ b/src/Illuminate/Foundation/Testing/Concerns/InteractsWithDatabase.php @@ -76,11 +76,9 @@ protected function assertDatabaseMissing($table, array $data = [], $connection = */ protected function assertDatabaseCount($table, int $count, $connection = null) { - $this->assertThat( + return tap($this)->assertThat( $this->getTable($table), new CountInDatabase($this->getConnection($connection, $table), $count) ); - - return $this; } /** @@ -92,11 +90,9 @@ protected function assertDatabaseCount($table, int $count, $connection = null) */ protected function assertDatabaseEmpty($table, $connection = null) { - $this->assertThat( + return tap($this)->assertThat( $this->getTable($table), new CountInDatabase($this->getConnection($connection, $table), 0) ); - - return $this; } /** diff --git a/src/Illuminate/Foundation/Testing/Concerns/InteractsWithSession.php b/src/Illuminate/Foundation/Testing/Concerns/InteractsWithSession.php index 9d72e7c30118..215d6dd6f420 100644 --- a/src/Illuminate/Foundation/Testing/Concerns/InteractsWithSession.php +++ b/src/Illuminate/Foundation/Testing/Concerns/InteractsWithSession.php @@ -12,9 +12,7 @@ trait InteractsWithSession */ public function withSession(array $data) { - $this->session($data); - - return $this; + return tap($this, fn () => $this->session($data)); } /** diff --git a/src/Illuminate/Foundation/Testing/Concerns/InteractsWithViews.php b/src/Illuminate/Foundation/Testing/Concerns/InteractsWithViews.php index 727bb1d55644..466ced49f9db 100644 --- a/src/Illuminate/Foundation/Testing/Concerns/InteractsWithViews.php +++ b/src/Illuminate/Foundation/Testing/Concerns/InteractsWithViews.php @@ -76,8 +76,6 @@ protected function component(string $componentClass, $data = []) */ protected function withViewErrors(array $errors, $key = 'default') { - ViewFacade::share('errors', (new ViewErrorBag)->put($key, new MessageBag($errors))); - - return $this; + return tap($this, fn () => ViewFacade::share('errors', (new ViewErrorBag)->put($key, new MessageBag($errors)))); } } diff --git a/src/Illuminate/Foundation/Testing/Concerns/MakesHttpRequests.php b/src/Illuminate/Foundation/Testing/Concerns/MakesHttpRequests.php index 77b212415430..1c0ec6f959e2 100644 --- a/src/Illuminate/Foundation/Testing/Concerns/MakesHttpRequests.php +++ b/src/Illuminate/Foundation/Testing/Concerns/MakesHttpRequests.php @@ -73,9 +73,7 @@ trait MakesHttpRequests */ public function withHeaders(array $headers) { - $this->defaultHeaders = array_merge($this->defaultHeaders, $headers); - - return $this; + return tap($this, fn () => $this->defaultHeaders = array_merge($this->defaultHeaders, $headers)); } /** @@ -87,9 +85,7 @@ public function withHeaders(array $headers) */ public function withHeader(string $name, string $value) { - $this->defaultHeaders[$name] = $value; - - return $this; + return tap($this, fn () => $this->defaultHeaders[$name] = $value); } /** @@ -161,9 +157,7 @@ public function withoutToken() */ public function flushHeaders() { - $this->defaultHeaders = []; - - return $this; + return tap($this, fn () => $this->defaultHeaders = []); } /** @@ -174,9 +168,7 @@ public function flushHeaders() */ public function withServerVariables(array $server) { - $this->serverVariables = $server; - - return $this; + return tap($this, fn () => $this->serverVariables = $server); } /** @@ -235,9 +227,7 @@ public function withMiddleware($middleware = null) */ public function withCookies(array $cookies) { - $this->defaultCookies = array_merge($this->defaultCookies, $cookies); - - return $this; + return tap($this, fn () => $this->defaultCookies = array_merge($this->defaultCookies, $cookies)); } /** @@ -249,9 +239,7 @@ public function withCookies(array $cookies) */ public function withCookie(string $name, string $value) { - $this->defaultCookies[$name] = $value; - - return $this; + return tap($this, fn () => $this->defaultCookies[$name] = $value); } /** @@ -262,9 +250,7 @@ public function withCookie(string $name, string $value) */ public function withUnencryptedCookies(array $cookies) { - $this->unencryptedCookies = array_merge($this->unencryptedCookies, $cookies); - - return $this; + return tap($this, fn () => $this->unencryptedCookies = array_merge($this->unencryptedCookies, $cookies)); } /** @@ -276,9 +262,7 @@ public function withUnencryptedCookies(array $cookies) */ public function withUnencryptedCookie(string $name, string $value) { - $this->unencryptedCookies[$name] = $value; - - return $this; + return tap($this, fn () => $this->unencryptedCookies[$name] = $value); } /** @@ -288,9 +272,7 @@ public function withUnencryptedCookie(string $name, string $value) */ public function followingRedirects() { - $this->followRedirects = true; - - return $this; + return tap($this, fn () => $this->followRedirects = true); } /** @@ -300,9 +282,7 @@ public function followingRedirects() */ public function withCredentials() { - $this->withCredentials = true; - - return $this; + return tap($this, fn () => $this->withCredentials = true); } /** @@ -312,9 +292,7 @@ public function withCredentials() */ public function disableCookieEncryption() { - $this->encryptCookies = false; - - return $this; + return tap($this, fn () => $this->encryptCookies = false); } /** diff --git a/src/Illuminate/Foundation/Vite.php b/src/Illuminate/Foundation/Vite.php index 861905cfe0ac..be4608949cde 100644 --- a/src/Illuminate/Foundation/Vite.php +++ b/src/Illuminate/Foundation/Vite.php @@ -157,9 +157,7 @@ public function useCspNonce($nonce = null) */ public function useIntegrityKey($key) { - $this->integrityKey = $key; - - return $this; + return tap($this, fn () => $this->integrityKey = $key); } /** @@ -170,9 +168,7 @@ public function useIntegrityKey($key) */ public function withEntryPoints($entryPoints) { - $this->entryPoints = $entryPoints; - - return $this; + return tap($this, fn () => $this->entryPoints = $entryPoints); } /** @@ -197,9 +193,7 @@ public function mergeEntryPoints($entryPoints) */ public function useManifestFilename($filename) { - $this->manifestFilename = $filename; - - return $this; + return tap($this, fn () => $this->manifestFilename = $filename); } /** @@ -210,9 +204,7 @@ public function useManifestFilename($filename) */ public function createAssetPathsUsing($resolver) { - $this->assetPathResolver = $resolver; - - return $this; + return tap($this, fn () => $this->assetPathResolver = $resolver); } /** @@ -233,9 +225,7 @@ public function hotFile() */ public function useHotFile($path) { - $this->hotFile = $path; - - return $this; + return tap($this, fn () => $this->hotFile = $path); } /** @@ -246,9 +236,7 @@ public function useHotFile($path) */ public function useBuildDirectory($path) { - $this->buildDirectory = $path; - - return $this; + return tap($this, fn () => $this->buildDirectory = $path); } /** diff --git a/src/Illuminate/Hashing/ArgonHasher.php b/src/Illuminate/Hashing/ArgonHasher.php index 759a5e87dba5..3690e6ad5919 100644 --- a/src/Illuminate/Hashing/ArgonHasher.php +++ b/src/Illuminate/Hashing/ArgonHasher.php @@ -180,9 +180,7 @@ protected function isUsingValidOptions($hashedValue) */ public function setMemory(int $memory) { - $this->memory = $memory; - - return $this; + return tap($this, fn () => $this->memory = $memory); } /** @@ -193,9 +191,7 @@ public function setMemory(int $memory) */ public function setTime(int $time) { - $this->time = $time; - - return $this; + return tap($this, fn () => $this->time = $time); } /** @@ -206,9 +202,7 @@ public function setTime(int $time) */ public function setThreads(int $threads) { - $this->threads = $threads; - - return $this; + return tap($this, fn () => $this->threads = $threads); } /** diff --git a/src/Illuminate/Hashing/BcryptHasher.php b/src/Illuminate/Hashing/BcryptHasher.php index 0780aee8b419..4e74684e1b22 100755 --- a/src/Illuminate/Hashing/BcryptHasher.php +++ b/src/Illuminate/Hashing/BcryptHasher.php @@ -142,9 +142,7 @@ protected function isUsingValidOptions($hashedValue) */ public function setRounds($rounds) { - $this->rounds = (int) $rounds; - - return $this; + return tap($this, fn () => $this->rounds = (int) $rounds); } /** diff --git a/src/Illuminate/Http/Client/Factory.php b/src/Illuminate/Http/Client/Factory.php index e3c3a9441bd0..eda801a288ba 100644 --- a/src/Illuminate/Http/Client/Factory.php +++ b/src/Illuminate/Http/Client/Factory.php @@ -101,9 +101,7 @@ public function __construct(?Dispatcher $dispatcher = null) */ public function globalMiddleware($middleware) { - $this->globalMiddleware[] = $middleware; - - return $this; + return tap($this, fn () => $this->globalMiddleware[] = $middleware); } /** @@ -114,9 +112,7 @@ public function globalMiddleware($middleware) */ public function globalRequestMiddleware($middleware) { - $this->globalMiddleware[] = Middleware::mapRequest($middleware); - - return $this; + return tap($this, fn () => $this->globalMiddleware[] = Middleware::mapRequest($middleware)); } /** @@ -127,9 +123,7 @@ public function globalRequestMiddleware($middleware) */ public function globalResponseMiddleware($middleware) { - $this->globalMiddleware[] = Middleware::mapResponse($middleware); - - return $this; + return tap($this, fn () => $this->globalMiddleware[] = Middleware::mapResponse($middleware)); } /** @@ -140,9 +134,7 @@ public function globalResponseMiddleware($middleware) */ public function globalOptions($options) { - $this->globalOptions = $options; - - return $this; + return tap($this, fn () => $this->globalOptions = $options); } /** @@ -292,9 +284,7 @@ public function stubUrl($url, $callback) */ public function preventStrayRequests($prevent = true) { - $this->preventStrayRequests = $prevent; - - return $this; + return tap($this, fn () => $this->preventStrayRequests = $prevent); } /** @@ -324,9 +314,7 @@ public function allowStrayRequests() */ protected function record() { - $this->recording = true; - - return $this; + return tap($this, fn () => $this->recording = true); } /** diff --git a/src/Illuminate/Http/Client/PendingRequest.php b/src/Illuminate/Http/Client/PendingRequest.php index 11598a602cfc..6218f8e60213 100644 --- a/src/Illuminate/Http/Client/PendingRequest.php +++ b/src/Illuminate/Http/Client/PendingRequest.php @@ -252,9 +252,7 @@ public function __construct(?Factory $factory = null, $middleware = []) */ public function baseUrl(string $url) { - $this->baseUrl = $url; - - return $this; + return tap($this, fn () => $this->baseUrl = $url); } /** @@ -372,9 +370,7 @@ public function withQueryParameters(array $parameters) */ public function contentType(string $contentType) { - $this->options['headers']['Content-Type'] = $contentType; - - return $this; + return tap($this, fn () => $this->options['headers']['Content-Type'] = $contentType); } /** @@ -433,9 +429,7 @@ public function withHeader($name, $value) */ public function replaceHeaders(array $headers) { - $this->options['headers'] = array_merge($this->options['headers'] ?? [], $headers); - - return $this; + return tap($this, fn () => $this->options['headers'] = array_merge($this->options['headers'] ?? [], $headers)); } /** @@ -641,9 +635,7 @@ public function withOptions(array $options) */ public function withMiddleware(callable $middleware) { - $this->middleware->push($middleware); - - return $this; + return tap($this, fn () => $this->middleware->push($middleware)); } /** @@ -654,9 +646,7 @@ public function withMiddleware(callable $middleware) */ public function withRequestMiddleware(callable $middleware) { - $this->middleware->push(Middleware::mapRequest($middleware)); - - return $this; + return tap($this, fn () => $this->middleware->push(Middleware::mapRequest($middleware))); } /** @@ -667,9 +657,7 @@ public function withRequestMiddleware(callable $middleware) */ public function withResponseMiddleware(callable $middleware) { - $this->middleware->push(Middleware::mapResponse($middleware)); - - return $this; + return tap($this, fn () => $this->middleware->push(Middleware::mapResponse($middleware))); } /** @@ -693,9 +681,7 @@ public function beforeSending($callback) */ public function throw(?callable $callback = null) { - $this->throwCallback = $callback ?: fn () => null; - - return $this; + return tap($this, fn () => $this->throwCallback = $callback ?: fn () => null); } /** @@ -1430,9 +1416,7 @@ protected function newResponse($response) */ public function stub($callback) { - $this->stubCallbacks = new Collection($callback); - - return $this; + return tap($this, fn () => $this->stubCallbacks = new Collection($callback)); } /** @@ -1443,9 +1427,7 @@ public function stub($callback) */ public function preventStrayRequests($prevent = true) { - $this->preventStrayRequests = $prevent; - - return $this; + return tap($this, fn () => $this->preventStrayRequests = $prevent); } /** @@ -1456,9 +1438,7 @@ public function preventStrayRequests($prevent = true) */ public function async(bool $async = true) { - $this->async = $async; - - return $this; + return tap($this, fn () => $this->async = $async); } /** @@ -1520,9 +1500,7 @@ protected function dispatchConnectionFailedEvent(Request $request, ConnectionExc */ public function setClient(Client $client) { - $this->client = $client; - - return $this; + return tap($this, fn () => $this->client = $client); } /** @@ -1533,9 +1511,7 @@ public function setClient(Client $client) */ public function setHandler($handler) { - $this->handler = $handler; - - return $this; + return tap($this, fn () => $this->handler = $handler); } /** diff --git a/src/Illuminate/Http/Client/Request.php b/src/Illuminate/Http/Client/Request.php index 7c0132a35f85..13cd652355ee 100644 --- a/src/Illuminate/Http/Client/Request.php +++ b/src/Illuminate/Http/Client/Request.php @@ -240,9 +240,7 @@ public function isMultipart() */ public function withData(array $data) { - $this->data = $data; - - return $this; + return tap($this, fn () => $this->data = $data); } /** diff --git a/src/Illuminate/Http/Client/Response.php b/src/Illuminate/Http/Client/Response.php index 776af42bf01a..878bd8643fcd 100644 --- a/src/Illuminate/Http/Client/Response.php +++ b/src/Illuminate/Http/Client/Response.php @@ -263,9 +263,7 @@ public function handlerStats() */ public function close() { - $this->response->getBody()->close(); - - return $this; + return tap($this, fn () => $this->response->getBody()->close()); } /** diff --git a/src/Illuminate/Http/Client/ResponseSequence.php b/src/Illuminate/Http/Client/ResponseSequence.php index e35736b05d99..9550858cdacc 100644 --- a/src/Illuminate/Http/Client/ResponseSequence.php +++ b/src/Illuminate/Http/Client/ResponseSequence.php @@ -109,9 +109,7 @@ public function pushFailedConnection($message = null) */ public function pushResponse($response) { - $this->responses[] = $response; - - return $this; + return tap($this, fn () => $this->responses[] = $response); } /** diff --git a/src/Illuminate/Http/Request.php b/src/Illuminate/Http/Request.php index 3ffe1a0fbefd..6c32f3b5a4d9 100644 --- a/src/Illuminate/Http/Request.php +++ b/src/Illuminate/Http/Request.php @@ -350,9 +350,7 @@ public function userAgent() */ public function merge(array $input) { - $this->getInputSource()->add($input); - - return $this; + return tap($this, fn () => $this->getInputSource()->add($input)); } /** @@ -376,9 +374,7 @@ public function mergeIfMissing(array $input) */ public function replace(array $input) { - $this->getInputSource()->replace($input); - - return $this; + return tap($this, fn () => $this->getInputSource()->replace($input)); } /** @@ -657,9 +653,7 @@ public function fingerprint() */ public function setJson($json) { - $this->json = $json; - - return $this; + return tap($this, fn () => $this->json = $json); } /** @@ -682,9 +676,7 @@ public function getUserResolver() */ public function setUserResolver(Closure $callback) { - $this->userResolver = $callback; - - return $this; + return tap($this, fn () => $this->userResolver = $callback); } /** @@ -707,9 +699,7 @@ public function getRouteResolver() */ public function setRouteResolver(Closure $callback) { - $this->routeResolver = $callback; - - return $this; + return tap($this, fn () => $this->routeResolver = $callback); } /** diff --git a/src/Illuminate/Http/Resources/Json/JsonResource.php b/src/Illuminate/Http/Resources/Json/JsonResource.php index 30b9425b08fb..2d0257fbdf66 100644 --- a/src/Illuminate/Http/Resources/Json/JsonResource.php +++ b/src/Illuminate/Http/Resources/Json/JsonResource.php @@ -173,9 +173,7 @@ public function with(Request $request) */ public function additional(array $data) { - $this->additional = $data; - - return $this; + return tap($this, fn () => $this->additional = $data); } /** diff --git a/src/Illuminate/Http/Resources/Json/ResourceCollection.php b/src/Illuminate/Http/Resources/Json/ResourceCollection.php index af86849fec1d..938afe60f4b8 100644 --- a/src/Illuminate/Http/Resources/Json/ResourceCollection.php +++ b/src/Illuminate/Http/Resources/Json/ResourceCollection.php @@ -61,9 +61,7 @@ public function __construct($resource) */ public function preserveQuery() { - $this->preserveAllQueryParameters = true; - - return $this; + return tap($this, fn () => $this->preserveAllQueryParameters = true); } /** diff --git a/src/Illuminate/Http/ResponseTrait.php b/src/Illuminate/Http/ResponseTrait.php index c0ddc711c7cd..96e6dd9474b5 100644 --- a/src/Illuminate/Http/ResponseTrait.php +++ b/src/Illuminate/Http/ResponseTrait.php @@ -74,9 +74,7 @@ public function getOriginalContent() */ public function header($key, $values, $replace = true) { - $this->headers->set($key, $values, $replace); - - return $this; + return tap($this, fn () => $this->headers->set($key, $values, $replace)); } /** @@ -163,9 +161,7 @@ public function getCallback() */ public function withException(Throwable $e) { - $this->exception = $e; - - return $this; + return tap($this, fn () => $this->exception = $e); } /** diff --git a/src/Illuminate/Http/Testing/File.php b/src/Illuminate/Http/Testing/File.php index aaba539cfbb5..984567d38b07 100644 --- a/src/Illuminate/Http/Testing/File.php +++ b/src/Illuminate/Http/Testing/File.php @@ -97,9 +97,7 @@ public static function image($name, $width = 10, $height = 10) */ public function size($kilobytes) { - $this->sizeToReport = $kilobytes * 1024; - - return $this; + return tap($this, fn () => $this->sizeToReport = $kilobytes * 1024); } /** @@ -120,9 +118,7 @@ public function getSize(): int */ public function mimeType($mimeType) { - $this->mimeTypeToReport = $mimeType; - - return $this; + return tap($this, fn () => $this->mimeTypeToReport = $mimeType); } /** diff --git a/src/Illuminate/Log/Context/Repository.php b/src/Illuminate/Log/Context/Repository.php index fd0a200ac5d3..feb98551b09d 100644 --- a/src/Illuminate/Log/Context/Repository.php +++ b/src/Illuminate/Log/Context/Repository.php @@ -443,9 +443,7 @@ public function isEmpty() */ public function dehydrating($callback) { - $this->events->listen(fn (Dehydrating $event) => $callback($event->context)); - - return $this; + return tap($this, fn () => $this->events->listen(fn (Dehydrating $event) => $callback($event->context))); } /** @@ -456,9 +454,7 @@ public function dehydrating($callback) */ public function hydrated($callback) { - $this->events->listen(fn (Hydrated $event) => $callback($event->context)); - - return $this; + return tap($this, fn () => $this->events->listen(fn (Hydrated $event) => $callback($event->context))); } /** @@ -469,9 +465,7 @@ public function hydrated($callback) */ public function handleUnserializeExceptionsUsing($callback) { - static::$handleUnserializeExceptionsUsing = $callback; - - return $this; + return tap($this, fn () => static::$handleUnserializeExceptionsUsing = $callback); } /** diff --git a/src/Illuminate/Log/LogManager.php b/src/Illuminate/Log/LogManager.php index 7563e35cb837..d4d19cad9b8a 100644 --- a/src/Illuminate/Log/LogManager.php +++ b/src/Illuminate/Log/LogManager.php @@ -544,9 +544,7 @@ public function withoutContext() */ public function flushSharedContext() { - $this->sharedContext = []; - - return $this; + return tap($this, fn () => $this->sharedContext = []); } /** @@ -600,9 +598,7 @@ public function setDefaultDriver($name) */ public function extend($driver, Closure $callback) { - $this->customCreators[$driver] = $callback->bindTo($this, $this); - - return $this; + return tap($this, fn () => $this->customCreators[$driver] = $callback->bindTo($this, $this)); } /** @@ -775,9 +771,7 @@ public function log($level, $message, array $context = []): void */ public function setApplication($app) { - $this->app = $app; - - return $this; + return tap($this, fn () => $this->app = $app); } /** diff --git a/src/Illuminate/Log/Logger.php b/src/Illuminate/Log/Logger.php index c94bf5bae249..5c6077e632d9 100755 --- a/src/Illuminate/Log/Logger.php +++ b/src/Illuminate/Log/Logger.php @@ -197,9 +197,7 @@ protected function writeLog($level, $message, $context): void */ public function withContext(array $context = []) { - $this->context = array_merge($this->context, $context); - - return $this; + return tap($this, fn () => $this->context = array_merge($this->context, $context)); } /** @@ -209,9 +207,7 @@ public function withContext(array $context = []) */ public function withoutContext() { - $this->context = []; - - return $this; + return tap($this, fn () => $this->context = []); } /** diff --git a/src/Illuminate/Mail/Attachment.php b/src/Illuminate/Mail/Attachment.php index cdf601e8c02f..58fc6b4cc92e 100644 --- a/src/Illuminate/Mail/Attachment.php +++ b/src/Illuminate/Mail/Attachment.php @@ -121,9 +121,7 @@ public static function fromStorageDisk($disk, $path) */ public function as($name) { - $this->as = $name; - - return $this; + return tap($this, fn () => $this->as = $name); } /** @@ -134,9 +132,7 @@ public function as($name) */ public function withMime($mime) { - $this->mime = $mime; - - return $this; + return tap($this, fn () => $this->mime = $mime); } /** diff --git a/src/Illuminate/Mail/MailManager.php b/src/Illuminate/Mail/MailManager.php index 330a13ecaf42..d0d279888e25 100644 --- a/src/Illuminate/Mail/MailManager.php +++ b/src/Illuminate/Mail/MailManager.php @@ -570,9 +570,7 @@ public function purge($name = null) */ public function extend($driver, Closure $callback) { - $this->customCreators[$driver] = $callback; - - return $this; + return tap($this, fn () => $this->customCreators[$driver] = $callback); } /** @@ -593,9 +591,7 @@ public function getApplication() */ public function setApplication($app) { - $this->app = $app; - - return $this; + return tap($this, fn () => $this->app = $app); } /** @@ -605,9 +601,7 @@ public function setApplication($app) */ public function forgetMailers() { - $this->mailers = []; - - return $this; + return tap($this, fn () => $this->mailers = []); } /** diff --git a/src/Illuminate/Mail/Mailable.php b/src/Illuminate/Mail/Mailable.php index e8226b5ab636..9f77dbe774ef 100644 --- a/src/Illuminate/Mail/Mailable.php +++ b/src/Illuminate/Mail/Mailable.php @@ -567,9 +567,7 @@ protected function runCallbacks($message) */ public function locale($locale) { - $this->locale = $locale; - - return $this; + return tap($this, fn () => $this->locale = $locale); } /** @@ -854,9 +852,7 @@ private function hasEnvelopeRecipient($address, $name, $property) */ public function subject($subject) { - $this->subject = $subject; - - return $this; + return tap($this, fn () => $this->subject = $subject); } /** @@ -909,9 +905,7 @@ public function view($view, array $data = []) */ public function html($html) { - $this->html = $html; - - return $this; + return tap($this, fn () => $this->html = $html); } /** @@ -1163,9 +1157,7 @@ public function hasAttachedData($data, $name, array $options = []) */ public function tag($value) { - array_push($this->tags, $value); - - return $this; + return tap($this, fn () => array_push($this->tags, $value)); } /** @@ -1189,9 +1181,7 @@ public function hasTag($value) */ public function metadata($key, $value) { - $this->metadata[$key] = $value; - - return $this; + return tap($this, fn () => $this->metadata[$key] = $value); } /** @@ -1780,9 +1770,7 @@ private function ensureAttachmentsAreHydrated() */ public function mailer($mailer) { - $this->mailer = $mailer; - - return $this; + return tap($this, fn () => $this->mailer = $mailer); } /** @@ -1793,9 +1781,7 @@ public function mailer($mailer) */ public function withSymfonyMessage($callback) { - $this->callbacks[] = $callback; - - return $this; + return tap($this, fn () => $this->callbacks[] = $callback); } /** diff --git a/src/Illuminate/Mail/Mailables/Content.php b/src/Illuminate/Mail/Mailables/Content.php index 80826243d04c..9867b0e72b86 100644 --- a/src/Illuminate/Mail/Mailables/Content.php +++ b/src/Illuminate/Mail/Mailables/Content.php @@ -82,9 +82,7 @@ public function __construct(?string $view = null, ?string $html = null, ?string */ public function view(string $view) { - $this->view = $view; - - return $this; + return tap($this, fn () => $this->view = $view); } /** @@ -106,9 +104,7 @@ public function html(string $view) */ public function text(string $view) { - $this->text = $view; - - return $this; + return tap($this, fn () => $this->text = $view); } /** @@ -119,9 +115,7 @@ public function text(string $view) */ public function markdown(string $view) { - $this->markdown = $view; - - return $this; + return tap($this, fn () => $this->markdown = $view); } /** @@ -132,9 +126,7 @@ public function markdown(string $view) */ public function htmlString(string $html) { - $this->htmlString = $html; - - return $this; + return tap($this, fn () => $this->htmlString = $html); } /** diff --git a/src/Illuminate/Mail/Mailables/Envelope.php b/src/Illuminate/Mail/Mailables/Envelope.php index 186955ba76ce..d0d8e9812895 100644 --- a/src/Illuminate/Mail/Mailables/Envelope.php +++ b/src/Illuminate/Mail/Mailables/Envelope.php @@ -125,9 +125,7 @@ protected function normalizeAddresses($addresses) */ public function from(Address|string $address, $name = null) { - $this->from = is_string($address) ? new Address($address, $name) : $address; - - return $this; + return tap($this, fn () => $this->from = is_string($address) ? new Address($address, $name) : $address); } /** @@ -202,9 +200,7 @@ public function replyTo(Address|array|string $address, $name = null) */ public function subject(string $subject) { - $this->subject = $subject; - - return $this; + return tap($this, fn () => $this->subject = $subject); } /** @@ -215,9 +211,7 @@ public function subject(string $subject) */ public function tags(array $tags) { - $this->tags = array_merge($this->tags, $tags); - - return $this; + return tap($this, fn () => $this->tags = array_merge($this->tags, $tags)); } /** @@ -228,9 +222,7 @@ public function tags(array $tags) */ public function tag(string $tag) { - $this->tags[] = $tag; - - return $this; + return tap($this, fn () => $this->tags[] = $tag); } /** @@ -242,9 +234,7 @@ public function tag(string $tag) */ public function metadata(string $key, string|int $value) { - $this->metadata[$key] = $value; - - return $this; + return tap($this, fn () => $this->metadata[$key] = $value); } /** @@ -255,9 +245,7 @@ public function metadata(string $key, string|int $value) */ public function using(Closure $callback) { - $this->using[] = $callback; - - return $this; + return tap($this, fn () => $this->using[] = $callback); } /** diff --git a/src/Illuminate/Mail/Mailables/Headers.php b/src/Illuminate/Mail/Mailables/Headers.php index 4a405e20cbbb..833f5ba7ba91 100644 --- a/src/Illuminate/Mail/Mailables/Headers.php +++ b/src/Illuminate/Mail/Mailables/Headers.php @@ -56,9 +56,7 @@ public function __construct(?string $messageId = null, array $references = [], a */ public function messageId(string $messageId) { - $this->messageId = $messageId; - - return $this; + return tap($this, fn () => $this->messageId = $messageId); } /** @@ -69,9 +67,7 @@ public function messageId(string $messageId) */ public function references(array $references) { - $this->references = array_merge($this->references, $references); - - return $this; + return tap($this, fn () => $this->references = array_merge($this->references, $references)); } /** @@ -82,9 +78,7 @@ public function references(array $references) */ public function text(array $text) { - $this->text = array_merge($this->text, $text); - - return $this; + return tap($this, fn () => $this->text = array_merge($this->text, $text)); } /** diff --git a/src/Illuminate/Mail/Mailer.php b/src/Illuminate/Mail/Mailer.php index bd6484f3ea67..64212de1ff45 100755 --- a/src/Illuminate/Mail/Mailer.php +++ b/src/Illuminate/Mail/Mailer.php @@ -659,8 +659,6 @@ public function setSymfonyTransport(TransportInterface $transport) */ public function setQueue(QueueContract $queue) { - $this->queue = $queue; - - return $this; + return tap($this, fn () => $this->queue = $queue); } } diff --git a/src/Illuminate/Mail/Markdown.php b/src/Illuminate/Mail/Markdown.php index 8faf739eb393..8c6d8f10962f 100644 --- a/src/Illuminate/Mail/Markdown.php +++ b/src/Illuminate/Mail/Markdown.php @@ -172,9 +172,7 @@ public function loadComponentsFrom(array $paths = []) */ public function theme($theme) { - $this->theme = $theme; - - return $this; + return tap($this, fn () => $this->theme = $theme); } /** diff --git a/src/Illuminate/Mail/Message.php b/src/Illuminate/Mail/Message.php index e5392dd52f8f..c54b3d113a1d 100755 --- a/src/Illuminate/Mail/Message.php +++ b/src/Illuminate/Mail/Message.php @@ -85,9 +85,7 @@ public function sender($address, $name = null) */ public function returnPath($address) { - $this->message->returnPath($address); - - return $this; + return tap($this, fn () => $this->message->returnPath($address)); } /** @@ -275,9 +273,7 @@ protected function addAddressDebugHeader(string $header, array $addresses) */ public function subject($subject) { - $this->message->subject($subject); - - return $this; + return tap($this, fn () => $this->message->subject($subject)); } /** @@ -288,9 +284,7 @@ public function subject($subject) */ public function priority($level) { - $this->message->priority($level); - - return $this; + return tap($this, fn () => $this->message->priority($level)); } /** @@ -325,9 +319,7 @@ public function attach($file, array $options = []) */ public function attachData($data, $name, array $options = []) { - $this->message->attach($data, $name, $options['mime'] ?? null); - - return $this; + return tap($this, fn () => $this->message->attach($data, $name, $options['mime'] ?? null)); } /** diff --git a/src/Illuminate/Mail/PendingMail.php b/src/Illuminate/Mail/PendingMail.php index 1aa3d9a6cc2f..2102271a5ec7 100644 --- a/src/Illuminate/Mail/PendingMail.php +++ b/src/Illuminate/Mail/PendingMail.php @@ -65,9 +65,7 @@ public function __construct(MailerContract $mailer) */ public function locale($locale) { - $this->locale = $locale; - - return $this; + return tap($this, fn () => $this->locale = $locale); } /** @@ -95,9 +93,7 @@ public function to($users) */ public function cc($users) { - $this->cc = $users; - - return $this; + return tap($this, fn () => $this->cc = $users); } /** @@ -108,9 +104,7 @@ public function cc($users) */ public function bcc($users) { - $this->bcc = $users; - - return $this; + return tap($this, fn () => $this->bcc = $users); } /** diff --git a/src/Illuminate/Notifications/ChannelManager.php b/src/Illuminate/Notifications/ChannelManager.php index 0ad7dae671a8..3581af26d990 100644 --- a/src/Illuminate/Notifications/ChannelManager.php +++ b/src/Illuminate/Notifications/ChannelManager.php @@ -155,8 +155,6 @@ public function deliverVia($channel) */ public function locale($locale) { - $this->locale = $locale; - - return $this; + return tap($this, fn () => $this->locale = $locale); } } diff --git a/src/Illuminate/Notifications/Messages/BroadcastMessage.php b/src/Illuminate/Notifications/Messages/BroadcastMessage.php index 9884a8fbb382..c342f418f07a 100644 --- a/src/Illuminate/Notifications/Messages/BroadcastMessage.php +++ b/src/Illuminate/Notifications/Messages/BroadcastMessage.php @@ -34,8 +34,6 @@ public function __construct(array $data) */ public function data($data) { - $this->data = $data; - - return $this; + return tap($this, fn () => $this->data = $data); } } diff --git a/src/Illuminate/Notifications/Messages/MailMessage.php b/src/Illuminate/Notifications/Messages/MailMessage.php index e8daf25130c8..6df3bf0b3892 100644 --- a/src/Illuminate/Notifications/Messages/MailMessage.php +++ b/src/Illuminate/Notifications/Messages/MailMessage.php @@ -170,9 +170,7 @@ public function markdown($view, array $data = []) */ public function template($template) { - $this->markdown = $template; - - return $this; + return tap($this, fn () => $this->markdown = $template); } /** @@ -183,9 +181,7 @@ public function template($template) */ public function theme($theme) { - $this->theme = $theme; - - return $this; + return tap($this, fn () => $this->theme = $theme); } /** @@ -197,9 +193,7 @@ public function theme($theme) */ public function from($address, $name = null) { - $this->from = [$address, $name]; - - return $this; + return tap($this, fn () => $this->from = [$address, $name]); } /** @@ -307,9 +301,7 @@ public function attachMany($files) */ public function attachData($data, $name, array $options = []) { - $this->rawAttachments[] = compact('data', 'name', 'options'); - - return $this; + return tap($this, fn () => $this->rawAttachments[] = compact('data', 'name', 'options')); } /** @@ -320,9 +312,7 @@ public function attachData($data, $name, array $options = []) */ public function tag($value) { - array_push($this->tags, $value); - - return $this; + return tap($this, fn () => array_push($this->tags, $value)); } /** @@ -334,9 +324,7 @@ public function tag($value) */ public function metadata($key, $value) { - $this->metadata[$key] = $value; - - return $this; + return tap($this, fn () => $this->metadata[$key] = $value); } /** @@ -349,9 +337,7 @@ public function metadata($key, $value) */ public function priority($level) { - $this->priority = $level; - - return $this; + return tap($this, fn () => $this->priority = $level); } /** @@ -415,8 +401,6 @@ public function render() */ public function withSymfonyMessage($callback) { - $this->callbacks[] = $callback; - - return $this; + return tap($this, fn () => $this->callbacks[] = $callback); } } diff --git a/src/Illuminate/Notifications/Messages/SimpleMessage.php b/src/Illuminate/Notifications/Messages/SimpleMessage.php index 254fd78ee137..ad2b33af43b1 100644 --- a/src/Illuminate/Notifications/Messages/SimpleMessage.php +++ b/src/Illuminate/Notifications/Messages/SimpleMessage.php @@ -77,9 +77,7 @@ class SimpleMessage */ public function success() { - $this->level = 'success'; - - return $this; + return tap($this, fn () => $this->level = 'success'); } /** @@ -89,9 +87,7 @@ public function success() */ public function error() { - $this->level = 'error'; - - return $this; + return tap($this, fn () => $this->level = 'error'); } /** @@ -102,9 +98,7 @@ public function error() */ public function level($level) { - $this->level = $level; - - return $this; + return tap($this, fn () => $this->level = $level); } /** @@ -115,9 +109,7 @@ public function level($level) */ public function subject($subject) { - $this->subject = $subject; - - return $this; + return tap($this, fn () => $this->subject = $subject); } /** @@ -128,9 +120,7 @@ public function subject($subject) */ public function greeting($greeting) { - $this->greeting = $greeting; - - return $this; + return tap($this, fn () => $this->greeting = $greeting); } /** @@ -141,9 +131,7 @@ public function greeting($greeting) */ public function salutation($salutation) { - $this->salutation = $salutation; - - return $this; + return tap($this, fn () => $this->salutation = $salutation); } /** @@ -265,9 +253,7 @@ public function action($text, $url) */ public function mailer($mailer) { - $this->mailer = $mailer; - - return $this; + return tap($this, fn () => $this->mailer = $mailer); } /** diff --git a/src/Illuminate/Notifications/Notification.php b/src/Illuminate/Notifications/Notification.php index 3af22645e478..0e14e57ea6e2 100644 --- a/src/Illuminate/Notifications/Notification.php +++ b/src/Illuminate/Notifications/Notification.php @@ -40,8 +40,6 @@ public function broadcastOn() */ public function locale($locale) { - $this->locale = $locale; - - return $this; + return tap($this, fn () => $this->locale = $locale); } } diff --git a/src/Illuminate/Pagination/AbstractCursorPaginator.php b/src/Illuminate/Pagination/AbstractCursorPaginator.php index 5f3322f75964..1b4eb4dc4ac3 100644 --- a/src/Illuminate/Pagination/AbstractCursorPaginator.php +++ b/src/Illuminate/Pagination/AbstractCursorPaginator.php @@ -370,9 +370,7 @@ protected function buildFragment() */ public function loadMorph($relation, $relations) { - $this->getCollection()->loadMorph($relation, $relations); - - return $this; + return tap($this, fn () => $this->getCollection()->loadMorph($relation, $relations)); } /** @@ -384,9 +382,7 @@ public function loadMorph($relation, $relations) */ public function loadMorphCount($relation, $relations) { - $this->getCollection()->loadMorphCount($relation, $relations); - - return $this; + return tap($this, fn () => $this->getCollection()->loadMorphCount($relation, $relations)); } /** @@ -407,9 +403,7 @@ public function items() */ public function through(callable $callback) { - $this->items->transform($callback); - - return $this; + return tap($this, fn () => $this->items->transform($callback)); } /** @@ -450,9 +444,7 @@ public function getCursorName() */ public function setCursorName($name) { - $this->cursorName = $name; - - return $this; + return tap($this, fn () => $this->cursorName = $name); } /** @@ -474,9 +466,7 @@ public function withPath($path) */ public function setPath($path) { - $this->path = $path; - - return $this; + return tap($this, fn () => $this->path = $path); } /** @@ -583,9 +573,7 @@ public function getCollection() */ public function setCollection(Collection $collection) { - $this->items = $collection; - - return $this; + return tap($this, fn () => $this->items = $collection); } /** diff --git a/src/Illuminate/Pagination/AbstractPaginator.php b/src/Illuminate/Pagination/AbstractPaginator.php index 8508b36b6a72..7803aa72ea1e 100644 --- a/src/Illuminate/Pagination/AbstractPaginator.php +++ b/src/Illuminate/Pagination/AbstractPaginator.php @@ -292,9 +292,7 @@ protected function buildFragment() */ public function loadMorph($relation, $relations) { - $this->getCollection()->loadMorph($relation, $relations); - - return $this; + return tap($this, fn () => $this->getCollection()->loadMorph($relation, $relations)); } /** @@ -306,9 +304,7 @@ public function loadMorph($relation, $relations) */ public function loadMorphCount($relation, $relations) { - $this->getCollection()->loadMorphCount($relation, $relations); - - return $this; + return tap($this, fn () => $this->getCollection()->loadMorphCount($relation, $relations)); } /** @@ -349,9 +345,7 @@ public function lastItem() */ public function through(callable $callback) { - $this->items->transform($callback); - - return $this; + return tap($this, fn () => $this->items->transform($callback)); } /** @@ -422,9 +416,7 @@ public function getPageName() */ public function setPageName($name) { - $this->pageName = $name; - - return $this; + return tap($this, fn () => $this->pageName = $name); } /** @@ -446,9 +438,7 @@ public function withPath($path) */ public function setPath($path) { - $this->path = $path; - - return $this; + return tap($this, fn () => $this->path = $path); } /** @@ -459,9 +449,7 @@ public function setPath($path) */ public function onEachSide($count) { - $this->onEachSide = $count; - - return $this; + return tap($this, fn () => $this->onEachSide = $count); } /** @@ -708,9 +696,7 @@ public function getCollection() */ public function setCollection(Collection $collection) { - $this->items = $collection; - - return $this; + return tap($this, fn () => $this->items = $collection); } /** diff --git a/src/Illuminate/Pagination/Paginator.php b/src/Illuminate/Pagination/Paginator.php index c2bc470be576..686af02d64e5 100644 --- a/src/Illuminate/Pagination/Paginator.php +++ b/src/Illuminate/Pagination/Paginator.php @@ -130,9 +130,7 @@ public function render($view = null, $data = []) */ public function hasMorePagesWhen($hasMore = true) { - $this->hasMore = $hasMore; - - return $this; + return tap($this, fn () => $this->hasMore = $hasMore); } /** diff --git a/src/Illuminate/Pipeline/Hub.php b/src/Illuminate/Pipeline/Hub.php index 6f284fe7ae19..6568e6215555 100644 --- a/src/Illuminate/Pipeline/Hub.php +++ b/src/Illuminate/Pipeline/Hub.php @@ -90,8 +90,6 @@ public function getContainer() */ public function setContainer(Container $container) { - $this->container = $container; - - return $this; + return tap($this, fn () => $this->container = $container); } } diff --git a/src/Illuminate/Pipeline/Pipeline.php b/src/Illuminate/Pipeline/Pipeline.php index ccae5189deeb..189f5b283579 100644 --- a/src/Illuminate/Pipeline/Pipeline.php +++ b/src/Illuminate/Pipeline/Pipeline.php @@ -60,9 +60,7 @@ public function __construct(?Container $container = null) */ public function send($passable) { - $this->passable = $passable; - - return $this; + return tap($this, fn () => $this->passable = $passable); } /** @@ -73,9 +71,7 @@ public function send($passable) */ public function through($pipes) { - $this->pipes = is_array($pipes) ? $pipes : func_get_args(); - - return $this; + return tap($this, fn () => $this->pipes = is_array($pipes) ? $pipes : func_get_args()); } /** @@ -86,9 +82,7 @@ public function through($pipes) */ public function pipe($pipes) { - array_push($this->pipes, ...(is_array($pipes) ? $pipes : func_get_args())); - - return $this; + return tap($this, fn () => array_push($this->pipes, ...(is_array($pipes) ? $pipes : func_get_args()))); } /** @@ -99,9 +93,7 @@ public function pipe($pipes) */ public function via($method) { - $this->method = $method; - - return $this; + return tap($this, fn () => $this->method = $method); } /** @@ -242,9 +234,7 @@ protected function getContainer() */ public function setContainer(Container $container) { - $this->container = $container; - - return $this; + return tap($this, fn () => $this->container = $container); } /** diff --git a/src/Illuminate/Process/Factory.php b/src/Illuminate/Process/Factory.php index b37246a8d75d..5e7cedd93e35 100644 --- a/src/Illuminate/Process/Factory.php +++ b/src/Illuminate/Process/Factory.php @@ -146,9 +146,7 @@ public function recordIfRecording(PendingProcess $process, ProcessResultContract */ public function record(PendingProcess $process, ProcessResultContract $result) { - $this->recorded[] = [$process, $result]; - - return $this; + return tap($this, fn () => $this->recorded[] = [$process, $result]); } /** @@ -159,9 +157,7 @@ public function record(PendingProcess $process, ProcessResultContract $result) */ public function preventStrayProcesses(bool $prevent = true) { - $this->preventStrayProcesses = $prevent; - - return $this; + return tap($this, fn () => $this->preventStrayProcesses = $prevent); } /** diff --git a/src/Illuminate/Process/FakeInvokedProcess.php b/src/Illuminate/Process/FakeInvokedProcess.php index c82f53c869d1..34bac829f816 100644 --- a/src/Illuminate/Process/FakeInvokedProcess.php +++ b/src/Illuminate/Process/FakeInvokedProcess.php @@ -295,8 +295,6 @@ public function predictProcessResult() */ public function withOutputHandler(?callable $outputHandler) { - $this->outputHandler = $outputHandler; - - return $this; + return tap($this, fn () => $this->outputHandler = $outputHandler); } } diff --git a/src/Illuminate/Process/FakeProcessDescription.php b/src/Illuminate/Process/FakeProcessDescription.php index b6a7f7a16a8d..03df3100fbba 100644 --- a/src/Illuminate/Process/FakeProcessDescription.php +++ b/src/Illuminate/Process/FakeProcessDescription.php @@ -43,9 +43,7 @@ class FakeProcessDescription */ public function id(int $processId) { - $this->processId = $processId; - - return $this; + return tap($this, fn () => $this->processId = $processId); } /** @@ -138,9 +136,7 @@ public function replaceErrorOutput(string $output) */ public function exitCode(int $exitCode) { - $this->exitCode = $exitCode; - - return $this; + return tap($this, fn () => $this->exitCode = $exitCode); } /** @@ -162,9 +158,7 @@ public function iterations(int $iterations) */ public function runsFor(int $iterations) { - $this->runIterations = $iterations; - - return $this; + return tap($this, fn () => $this->runIterations = $iterations); } /** diff --git a/src/Illuminate/Process/InvokedProcess.php b/src/Illuminate/Process/InvokedProcess.php index d19230ce8a44..b571fabea42a 100644 --- a/src/Illuminate/Process/InvokedProcess.php +++ b/src/Illuminate/Process/InvokedProcess.php @@ -45,9 +45,7 @@ public function id() */ public function signal(int $signal) { - $this->process->signal($signal); - - return $this; + return tap($this, fn () => $this->process->signal($signal)); } /** diff --git a/src/Illuminate/Process/PendingProcess.php b/src/Illuminate/Process/PendingProcess.php index 668385460ac2..2e14dd6745f1 100644 --- a/src/Illuminate/Process/PendingProcess.php +++ b/src/Illuminate/Process/PendingProcess.php @@ -112,9 +112,7 @@ public function __construct(Factory $factory) */ public function command(array|string $command) { - $this->command = $command; - - return $this; + return tap($this, fn () => $this->command = $command); } /** @@ -125,9 +123,7 @@ public function command(array|string $command) */ public function path(string $path) { - $this->path = $path; - - return $this; + return tap($this, fn () => $this->path = $path); } /** @@ -138,9 +134,7 @@ public function path(string $path) */ public function timeout(int $timeout) { - $this->timeout = $timeout; - - return $this; + return tap($this, fn () => $this->timeout = $timeout); } /** @@ -151,9 +145,7 @@ public function timeout(int $timeout) */ public function idleTimeout(int $timeout) { - $this->idleTimeout = $timeout; - - return $this; + return tap($this, fn () => $this->idleTimeout = $timeout); } /** @@ -163,9 +155,7 @@ public function idleTimeout(int $timeout) */ public function forever() { - $this->timeout = null; - - return $this; + return tap($this, fn () => $this->timeout = null); } /** @@ -176,9 +166,7 @@ public function forever() */ public function env(array $environment) { - $this->environment = $environment; - - return $this; + return tap($this, fn () => $this->environment = $environment); } /** @@ -189,9 +177,7 @@ public function env(array $environment) */ public function input($input) { - $this->input = $input; - - return $this; + return tap($this, fn () => $this->input = $input); } /** @@ -201,9 +187,7 @@ public function input($input) */ public function quietly() { - $this->quietly = true; - - return $this; + return tap($this, fn () => $this->quietly = true); } /** @@ -214,9 +198,7 @@ public function quietly() */ public function tty(bool $tty = true) { - $this->tty = $tty; - - return $this; + return tap($this, fn () => $this->tty = $tty); } /** @@ -227,9 +209,7 @@ public function tty(bool $tty = true) */ public function options(array $options) { - $this->options = $options; - - return $this; + return tap($this, fn () => $this->options = $options); } /** @@ -337,9 +317,7 @@ protected function toSymfonyProcess(array|string|null $command) */ public function withFakeHandlers(array $fakeHandlers) { - $this->fakeHandlers = $fakeHandlers; - - return $this; + return tap($this, fn () => $this->fakeHandlers = $fakeHandlers); } /** diff --git a/src/Illuminate/Queue/InteractsWithQueue.php b/src/Illuminate/Queue/InteractsWithQueue.php index a539f70c3967..55d55ddf5b25 100644 --- a/src/Illuminate/Queue/InteractsWithQueue.php +++ b/src/Illuminate/Queue/InteractsWithQueue.php @@ -89,9 +89,7 @@ public function release($delay = 0) */ public function withFakeQueueInteractions() { - $this->job = new FakeJob; - - return $this; + return tap($this, fn () => $this->job = new FakeJob); } /** @@ -229,8 +227,6 @@ private function ensureQueueInteractionsHaveBeenFaked() */ public function setJob(JobContract $job) { - $this->job = $job; - - return $this; + return tap($this, fn () => $this->job = $job); } } diff --git a/src/Illuminate/Queue/Middleware/RateLimited.php b/src/Illuminate/Queue/Middleware/RateLimited.php index e426517a777b..dad7fb4ae6ce 100644 --- a/src/Illuminate/Queue/Middleware/RateLimited.php +++ b/src/Illuminate/Queue/Middleware/RateLimited.php @@ -108,9 +108,7 @@ protected function handleJob($job, $next, array $limits) */ public function dontRelease() { - $this->shouldRelease = false; - - return $this; + return tap($this, fn () => $this->shouldRelease = false); } /** diff --git a/src/Illuminate/Queue/Middleware/ThrottlesExceptions.php b/src/Illuminate/Queue/Middleware/ThrottlesExceptions.php index 83d789616649..8c648613b6a9 100644 --- a/src/Illuminate/Queue/Middleware/ThrottlesExceptions.php +++ b/src/Illuminate/Queue/Middleware/ThrottlesExceptions.php @@ -126,9 +126,7 @@ public function handle($job, $next) */ public function when(callable $callback) { - $this->whenCallback = $callback; - - return $this; + return tap($this, fn () => $this->whenCallback = $callback); } /** @@ -139,9 +137,7 @@ public function when(callable $callback) */ public function withPrefix(string $prefix) { - $this->prefix = $prefix; - - return $this; + return tap($this, fn () => $this->prefix = $prefix); } /** @@ -152,9 +148,7 @@ public function withPrefix(string $prefix) */ public function backoff($backoff) { - $this->retryAfterMinutes = $backoff; - - return $this; + return tap($this, fn () => $this->retryAfterMinutes = $backoff); } /** @@ -182,9 +176,7 @@ protected function getKey($job) */ public function by($key) { - $this->key = $key; - - return $this; + return tap($this, fn () => $this->key = $key); } /** @@ -194,9 +186,7 @@ public function by($key) */ public function byJob() { - $this->byJob = true; - - return $this; + return tap($this, fn () => $this->byJob = true); } /** @@ -207,9 +197,7 @@ public function byJob() */ public function report(?callable $callback = null) { - $this->reportCallback = $callback ?? fn () => true; - - return $this; + return tap($this, fn () => $this->reportCallback = $callback ?? fn () => true); } /** diff --git a/src/Illuminate/Queue/Middleware/WithoutOverlapping.php b/src/Illuminate/Queue/Middleware/WithoutOverlapping.php index 3b773adf43b9..074dcb169ea4 100644 --- a/src/Illuminate/Queue/Middleware/WithoutOverlapping.php +++ b/src/Illuminate/Queue/Middleware/WithoutOverlapping.php @@ -92,9 +92,7 @@ public function handle($job, $next) */ public function releaseAfter($releaseAfter) { - $this->releaseAfter = $releaseAfter; - - return $this; + return tap($this, fn () => $this->releaseAfter = $releaseAfter); } /** @@ -104,9 +102,7 @@ public function releaseAfter($releaseAfter) */ public function dontRelease() { - $this->releaseAfter = null; - - return $this; + return tap($this, fn () => $this->releaseAfter = null); } /** @@ -117,9 +113,7 @@ public function dontRelease() */ public function expireAfter($expiresAfter) { - $this->expiresAfter = $this->secondsUntil($expiresAfter); - - return $this; + return tap($this, fn () => $this->expiresAfter = $this->secondsUntil($expiresAfter)); } /** @@ -130,9 +124,7 @@ public function expireAfter($expiresAfter) */ public function withPrefix(string $prefix) { - $this->prefix = $prefix; - - return $this; + return tap($this, fn () => $this->prefix = $prefix); } /** @@ -142,9 +134,7 @@ public function withPrefix(string $prefix) */ public function shared() { - $this->shareKey = true; - - return $this; + return tap($this, fn () => $this->shareKey = true); } /** diff --git a/src/Illuminate/Queue/Queue.php b/src/Illuminate/Queue/Queue.php index 9c3109fcb6cf..43768f4690ed 100755 --- a/src/Illuminate/Queue/Queue.php +++ b/src/Illuminate/Queue/Queue.php @@ -417,9 +417,7 @@ public function getConnectionName() */ public function setConnectionName($name) { - $this->connectionName = $name; - - return $this; + return tap($this, fn () => $this->connectionName = $name); } /** diff --git a/src/Illuminate/Queue/Worker.php b/src/Illuminate/Queue/Worker.php index 1dd228fb907d..66d00ed964e7 100644 --- a/src/Illuminate/Queue/Worker.php +++ b/src/Illuminate/Queue/Worker.php @@ -827,9 +827,7 @@ public function sleep($seconds) */ public function setCache(CacheContract $cache) { - $this->cache = $cache; - - return $this; + return tap($this, fn () => $this->cache = $cache); } /** @@ -840,9 +838,7 @@ public function setCache(CacheContract $cache) */ public function setName($name) { - $this->name = $name; - - return $this; + return tap($this, fn () => $this->name = $name); } /** diff --git a/src/Illuminate/Redis/Connections/Connection.php b/src/Illuminate/Redis/Connections/Connection.php index 3e5338ee49a7..e570fb7bb1c6 100644 --- a/src/Illuminate/Redis/Connections/Connection.php +++ b/src/Illuminate/Redis/Connections/Connection.php @@ -177,9 +177,7 @@ public function getName() */ public function setName($name) { - $this->name = $name; - - return $this; + return tap($this, fn () => $this->name = $name); } /** diff --git a/src/Illuminate/Redis/Limiters/ConcurrencyLimiterBuilder.php b/src/Illuminate/Redis/Limiters/ConcurrencyLimiterBuilder.php index 8ff02768297f..ff46f7bd1db3 100644 --- a/src/Illuminate/Redis/Limiters/ConcurrencyLimiterBuilder.php +++ b/src/Illuminate/Redis/Limiters/ConcurrencyLimiterBuilder.php @@ -72,9 +72,7 @@ public function __construct($connection, $name) */ public function limit($maxLocks) { - $this->maxLocks = $maxLocks; - - return $this; + return tap($this, fn () => $this->maxLocks = $maxLocks); } /** @@ -85,9 +83,7 @@ public function limit($maxLocks) */ public function releaseAfter($releaseAfter) { - $this->releaseAfter = $this->secondsUntil($releaseAfter); - - return $this; + return tap($this, fn () => $this->releaseAfter = $this->secondsUntil($releaseAfter)); } /** @@ -98,9 +94,7 @@ public function releaseAfter($releaseAfter) */ public function block($timeout) { - $this->timeout = $timeout; - - return $this; + return tap($this, fn () => $this->timeout = $timeout); } /** @@ -111,9 +105,7 @@ public function block($timeout) */ public function sleep($sleep) { - $this->sleep = $sleep; - - return $this; + return tap($this, fn () => $this->sleep = $sleep); } /** diff --git a/src/Illuminate/Redis/Limiters/DurationLimiterBuilder.php b/src/Illuminate/Redis/Limiters/DurationLimiterBuilder.php index 8eedc1177c58..7ebeed945563 100644 --- a/src/Illuminate/Redis/Limiters/DurationLimiterBuilder.php +++ b/src/Illuminate/Redis/Limiters/DurationLimiterBuilder.php @@ -72,9 +72,7 @@ public function __construct($connection, $name) */ public function allow($maxLocks) { - $this->maxLocks = $maxLocks; - - return $this; + return tap($this, fn () => $this->maxLocks = $maxLocks); } /** @@ -85,9 +83,7 @@ public function allow($maxLocks) */ public function every($decay) { - $this->decay = $this->secondsUntil($decay); - - return $this; + return tap($this, fn () => $this->decay = $this->secondsUntil($decay)); } /** @@ -98,9 +94,7 @@ public function every($decay) */ public function block($timeout) { - $this->timeout = $timeout; - - return $this; + return tap($this, fn () => $this->timeout = $timeout); } /** @@ -111,9 +105,7 @@ public function block($timeout) */ public function sleep($sleep) { - $this->sleep = $sleep; - - return $this; + return tap($this, fn () => $this->sleep = $sleep); } /** diff --git a/src/Illuminate/Redis/RedisManager.php b/src/Illuminate/Redis/RedisManager.php index f1c7d4e917c3..543bcfd2ef25 100644 --- a/src/Illuminate/Redis/RedisManager.php +++ b/src/Illuminate/Redis/RedisManager.php @@ -259,9 +259,7 @@ public function purge($name = null) */ public function extend($driver, Closure $callback) { - $this->customCreators[$driver] = $callback->bindTo($this, $this); - - return $this; + return tap($this, fn () => $this->customCreators[$driver] = $callback->bindTo($this, $this)); } /** diff --git a/src/Illuminate/Routing/CompiledRouteCollection.php b/src/Illuminate/Routing/CompiledRouteCollection.php index 0178f783ee42..2d85f5703bf3 100644 --- a/src/Illuminate/Routing/CompiledRouteCollection.php +++ b/src/Illuminate/Routing/CompiledRouteCollection.php @@ -310,9 +310,7 @@ protected function newRoute(array $attributes) */ public function setRouter(Router $router) { - $this->router = $router; - - return $this; + return tap($this, fn () => $this->router = $router); } /** @@ -323,8 +321,6 @@ public function setRouter(Router $router) */ public function setContainer(Container $container) { - $this->container = $container; - - return $this; + return tap($this, fn () => $this->container = $container); } } diff --git a/src/Illuminate/Routing/ControllerMiddlewareOptions.php b/src/Illuminate/Routing/ControllerMiddlewareOptions.php index dfb9f473f71d..ec282da15d40 100644 --- a/src/Illuminate/Routing/ControllerMiddlewareOptions.php +++ b/src/Illuminate/Routing/ControllerMiddlewareOptions.php @@ -30,9 +30,7 @@ public function __construct(array &$options) */ public function only($methods) { - $this->options['only'] = is_array($methods) ? $methods : func_get_args(); - - return $this; + return tap($this, fn () => $this->options['only'] = is_array($methods) ? $methods : func_get_args()); } /** @@ -43,8 +41,6 @@ public function only($methods) */ public function except($methods) { - $this->options['except'] = is_array($methods) ? $methods : func_get_args(); - - return $this; + return tap($this, fn () => $this->options['except'] = is_array($methods) ? $methods : func_get_args()); } } diff --git a/src/Illuminate/Routing/Controllers/Middleware.php b/src/Illuminate/Routing/Controllers/Middleware.php index ebe9389e0b2e..fc9073cd5be1 100644 --- a/src/Illuminate/Routing/Controllers/Middleware.php +++ b/src/Illuminate/Routing/Controllers/Middleware.php @@ -25,9 +25,7 @@ public function __construct(public Closure|string|array $middleware, public ?arr */ public function only(array|string $only) { - $this->only = Arr::wrap($only); - - return $this; + return tap($this, fn () => $this->only = Arr::wrap($only)); } /** @@ -38,8 +36,6 @@ public function only(array|string $only) */ public function except(array|string $except) { - $this->except = Arr::wrap($except); - - return $this; + return tap($this, fn () => $this->except = Arr::wrap($except)); } } diff --git a/src/Illuminate/Routing/PendingResourceRegistration.php b/src/Illuminate/Routing/PendingResourceRegistration.php index 3f23734c1941..cddd54833ba5 100644 --- a/src/Illuminate/Routing/PendingResourceRegistration.php +++ b/src/Illuminate/Routing/PendingResourceRegistration.php @@ -69,9 +69,7 @@ public function __construct(ResourceRegistrar $registrar, $name, $controller, ar */ public function only($methods) { - $this->options['only'] = is_array($methods) ? $methods : func_get_args(); - - return $this; + return tap($this, fn () => $this->options['only'] = is_array($methods) ? $methods : func_get_args()); } /** @@ -82,9 +80,7 @@ public function only($methods) */ public function except($methods) { - $this->options['except'] = is_array($methods) ? $methods : func_get_args(); - - return $this; + return tap($this, fn () => $this->options['except'] = is_array($methods) ? $methods : func_get_args()); } /** @@ -95,9 +91,7 @@ public function except($methods) */ public function names($names) { - $this->options['names'] = $names; - - return $this; + return tap($this, fn () => $this->options['names'] = $names); } /** @@ -109,9 +103,7 @@ public function names($names) */ public function name($method, $name) { - $this->options['names'][$method] = $name; - - return $this; + return tap($this, fn () => $this->options['names'][$method] = $name); } /** @@ -122,9 +114,7 @@ public function name($method, $name) */ public function parameters($parameters) { - $this->options['parameters'] = $parameters; - - return $this; + return tap($this, fn () => $this->options['parameters'] = $parameters); } /** @@ -136,9 +126,7 @@ public function parameters($parameters) */ public function parameter($previous, $new) { - $this->options['parameters'][$previous] = $new; - - return $this; + return tap($this, fn () => $this->options['parameters'][$previous] = $new); } /** @@ -183,9 +171,7 @@ public function withoutMiddleware($middleware) */ public function where($wheres) { - $this->options['wheres'] = $wheres; - - return $this; + return tap($this, fn () => $this->options['wheres'] = $wheres); } /** @@ -196,9 +182,7 @@ public function where($wheres) */ public function shallow($shallow = true) { - $this->options['shallow'] = $shallow; - - return $this; + return tap($this, fn () => $this->options['shallow'] = $shallow); } /** @@ -209,9 +193,7 @@ public function shallow($shallow = true) */ public function missing($callback) { - $this->options['missing'] = $callback; - - return $this; + return tap($this, fn () => $this->options['missing'] = $callback); } /** @@ -222,9 +204,7 @@ public function missing($callback) */ public function scoped(array $fields = []) { - $this->options['bindingFields'] = $fields; - - return $this; + return tap($this, fn () => $this->options['bindingFields'] = $fields); } /** @@ -235,9 +215,7 @@ public function scoped(array $fields = []) */ public function withTrashed(array $methods = []) { - $this->options['trashed'] = $methods; - - return $this; + return tap($this, fn () => $this->options['trashed'] = $methods); } /** diff --git a/src/Illuminate/Routing/PendingSingletonResourceRegistration.php b/src/Illuminate/Routing/PendingSingletonResourceRegistration.php index fa1e7e9e310b..7fa847c64e44 100644 --- a/src/Illuminate/Routing/PendingSingletonResourceRegistration.php +++ b/src/Illuminate/Routing/PendingSingletonResourceRegistration.php @@ -69,9 +69,7 @@ public function __construct(ResourceRegistrar $registrar, $name, $controller, ar */ public function only($methods) { - $this->options['only'] = is_array($methods) ? $methods : func_get_args(); - - return $this; + return tap($this, fn () => $this->options['only'] = is_array($methods) ? $methods : func_get_args()); } /** @@ -82,9 +80,7 @@ public function only($methods) */ public function except($methods) { - $this->options['except'] = is_array($methods) ? $methods : func_get_args(); - - return $this; + return tap($this, fn () => $this->options['except'] = is_array($methods) ? $methods : func_get_args()); } /** @@ -94,9 +90,7 @@ public function except($methods) */ public function creatable() { - $this->options['creatable'] = true; - - return $this; + return tap($this, fn () => $this->options['creatable'] = true); } /** @@ -106,9 +100,7 @@ public function creatable() */ public function destroyable() { - $this->options['destroyable'] = true; - - return $this; + return tap($this, fn () => $this->options['destroyable'] = true); } /** @@ -119,9 +111,7 @@ public function destroyable() */ public function names($names) { - $this->options['names'] = $names; - - return $this; + return tap($this, fn () => $this->options['names'] = $names); } /** @@ -133,9 +123,7 @@ public function names($names) */ public function name($method, $name) { - $this->options['names'][$method] = $name; - - return $this; + return tap($this, fn () => $this->options['names'][$method] = $name); } /** @@ -146,9 +134,7 @@ public function name($method, $name) */ public function parameters($parameters) { - $this->options['parameters'] = $parameters; - - return $this; + return tap($this, fn () => $this->options['parameters'] = $parameters); } /** @@ -160,9 +146,7 @@ public function parameters($parameters) */ public function parameter($previous, $new) { - $this->options['parameters'][$previous] = $new; - - return $this; + return tap($this, fn () => $this->options['parameters'][$previous] = $new); } /** @@ -207,9 +191,7 @@ public function withoutMiddleware($middleware) */ public function where($wheres) { - $this->options['wheres'] = $wheres; - - return $this; + return tap($this, fn () => $this->options['wheres'] = $wheres); } /** diff --git a/src/Illuminate/Routing/Redirector.php b/src/Illuminate/Routing/Redirector.php index 24de72d1fe7d..803b99d881e5 100755 --- a/src/Illuminate/Routing/Redirector.php +++ b/src/Illuminate/Routing/Redirector.php @@ -256,8 +256,6 @@ public function getIntendedUrl() */ public function setIntendedUrl($url) { - $this->session->put('url.intended', $url); - - return $this; + return tap($this, fn () => $this->session->put('url.intended', $url)); } } diff --git a/src/Illuminate/Routing/Route.php b/src/Illuminate/Routing/Route.php index c710312d1202..aa1069f63f41 100755 --- a/src/Illuminate/Routing/Route.php +++ b/src/Illuminate/Routing/Route.php @@ -575,9 +575,7 @@ public function bindingFields() */ public function setBindingFields(array $bindingFields) { - $this->bindingFields = $bindingFields; - - return $this; + return tap($this, fn () => $this->bindingFields = $bindingFields); } /** @@ -605,9 +603,7 @@ public function parentOfParameter($parameter) */ public function withTrashed($withTrashed = true) { - $this->withTrashedBindings = $withTrashed; - - return $this; + return tap($this, fn () => $this->withTrashedBindings = $withTrashed); } /** @@ -629,9 +625,7 @@ public function allowsTrashedBindings() */ public function defaults($key, $value) { - $this->defaults[$key] = $value; - - return $this; + return tap($this, fn () => $this->defaults[$key] = $value); } /** @@ -642,9 +636,7 @@ public function defaults($key, $value) */ public function setDefaults(array $defaults) { - $this->defaults = $defaults; - - return $this; + return tap($this, fn () => $this->defaults = $defaults); } /** @@ -697,9 +689,7 @@ public function setWheres(array $wheres) */ public function fallback() { - $this->isFallback = true; - - return $this; + return tap($this, fn () => $this->isFallback = true); } /** @@ -710,9 +700,7 @@ public function fallback() */ public function setFallback($isFallback) { - $this->isFallback = $isFallback; - - return $this; + return tap($this, fn () => $this->isFallback = $isFallback); } /** @@ -853,9 +841,7 @@ public function uri() */ public function setUri($uri) { - $this->uri = $this->parseUri($uri); - - return $this; + return tap($this, fn () => $this->uri = $this->parseUri($uri)); } /** @@ -1032,9 +1018,7 @@ public function getMissing() */ public function missing($missing) { - $this->action['missing'] = $missing; - - return $this; + return tap($this, fn () => $this->action['missing'] = $missing); } /** @@ -1181,9 +1165,7 @@ public function excludedMiddleware() */ public function scopeBindings() { - $this->action['scope_bindings'] = true; - - return $this; + return tap($this, fn () => $this->action['scope_bindings'] = true); } /** @@ -1193,9 +1175,7 @@ public function scopeBindings() */ public function withoutScopedBindings() { - $this->action['scope_bindings'] = false; - - return $this; + return tap($this, fn () => $this->action['scope_bindings'] = false); } /** @@ -1341,9 +1321,7 @@ public function getCompiled() */ public function setRouter(Router $router) { - $this->router = $router; - - return $this; + return tap($this, fn () => $this->router = $router); } /** @@ -1354,9 +1332,7 @@ public function setRouter(Router $router) */ public function setContainer(Container $container) { - $this->container = $container; - - return $this; + return tap($this, fn () => $this->container = $container); } /** diff --git a/src/Illuminate/Routing/RouteRegistrar.php b/src/Illuminate/Routing/RouteRegistrar.php index dc4755087d18..d25381f13fd6 100644 --- a/src/Illuminate/Routing/RouteRegistrar.php +++ b/src/Illuminate/Routing/RouteRegistrar.php @@ -196,9 +196,7 @@ public function apiSingleton($name, $controller, array $options = []) */ public function group($callback) { - $this->router->group($this->attributes, $callback); - - return $this; + return tap($this, fn () => $this->router->group($this->attributes, $callback)); } /** diff --git a/src/Illuminate/Routing/Router.php b/src/Illuminate/Routing/Router.php index 3665d910aa34..a7d7bcfb196a 100644 --- a/src/Illuminate/Routing/Router.php +++ b/src/Illuminate/Routing/Router.php @@ -973,9 +973,7 @@ public function substituteImplicitBindings($route) */ public function substituteImplicitBindingsUsing($callback) { - $this->implicitBindingCallback = $callback; - - return $this; + return tap($this, fn () => $this->implicitBindingCallback = $callback); } /** @@ -1023,9 +1021,7 @@ public function getMiddleware() */ public function aliasMiddleware($name, $class) { - $this->middleware[$name] = $class; - - return $this; + return tap($this, fn () => $this->middleware[$name] = $class); } /** @@ -1058,9 +1054,7 @@ public function getMiddlewareGroups() */ public function middlewareGroup($name, array $middleware) { - $this->middlewareGroups[$name] = $middleware; - - return $this; + return tap($this, fn () => $this->middlewareGroups[$name] = $middleware); } /** @@ -1136,9 +1130,7 @@ public function removeMiddlewareFromGroup($group, $middleware) */ public function flushMiddlewareGroups() { - $this->middlewareGroups = []; - - return $this; + return tap($this, fn () => $this->middlewareGroups = []); } /** @@ -1475,9 +1467,7 @@ public static function uniqueMiddleware(array $middleware) */ public function setContainer(Container $container) { - $this->container = $container; - - return $this; + return tap($this, fn () => $this->container = $container); } /** diff --git a/src/Illuminate/Routing/UrlGenerator.php b/src/Illuminate/Routing/UrlGenerator.php index 40c854b76476..48ea4d9b402f 100755 --- a/src/Illuminate/Routing/UrlGenerator.php +++ b/src/Illuminate/Routing/UrlGenerator.php @@ -763,9 +763,7 @@ public function forceRootUrl($root) */ public function formatHostUsing(Closure $callback) { - $this->formatHostUsing = $callback; - - return $this; + return tap($this, fn () => $this->formatHostUsing = $callback); } /** @@ -776,9 +774,7 @@ public function formatHostUsing(Closure $callback) */ public function formatPathUsing(Closure $callback) { - $this->formatPathUsing = $callback; - - return $this; + return tap($this, fn () => $this->formatPathUsing = $callback); } /** @@ -833,9 +829,7 @@ public function setRequest(Request $request) */ public function setRoutes(RouteCollectionInterface $routes) { - $this->routes = $routes; - - return $this; + return tap($this, fn () => $this->routes = $routes); } /** @@ -858,9 +852,7 @@ protected function getSession() */ public function setSessionResolver(callable $sessionResolver) { - $this->sessionResolver = $sessionResolver; - - return $this; + return tap($this, fn () => $this->sessionResolver = $sessionResolver); } /** @@ -871,9 +863,7 @@ public function setSessionResolver(callable $sessionResolver) */ public function setKeyResolver(callable $keyResolver) { - $this->keyResolver = $keyResolver; - - return $this; + return tap($this, fn () => $this->keyResolver = $keyResolver); } /** @@ -895,9 +885,7 @@ public function withKeyResolver(callable $keyResolver) */ public function resolveMissingNamedRoutesUsing(callable $missingNamedRouteResolver) { - $this->missingNamedRouteResolver = $missingNamedRouteResolver; - - return $this; + return tap($this, fn () => $this->missingNamedRouteResolver = $missingNamedRouteResolver); } /** @@ -918,8 +906,6 @@ public function getRootControllerNamespace() */ public function setRootControllerNamespace($rootNamespace) { - $this->rootNamespace = $rootNamespace; - - return $this; + return tap($this, fn () => $this->rootNamespace = $rootNamespace); } } diff --git a/src/Illuminate/Session/DatabaseSessionHandler.php b/src/Illuminate/Session/DatabaseSessionHandler.php index 0770c22f46e9..9f993bada8b7 100644 --- a/src/Illuminate/Session/DatabaseSessionHandler.php +++ b/src/Illuminate/Session/DatabaseSessionHandler.php @@ -299,9 +299,7 @@ protected function getQuery() */ public function setContainer($container) { - $this->container = $container; - - return $this; + return tap($this, fn () => $this->container = $container); } /** @@ -312,8 +310,6 @@ public function setContainer($container) */ public function setExists($value) { - $this->exists = $value; - - return $this; + return tap($this, fn () => $this->exists = $value); } } diff --git a/src/Illuminate/Support/Composer.php b/src/Illuminate/Support/Composer.php index 856d7728d227..0b11167e9463 100644 --- a/src/Illuminate/Support/Composer.php +++ b/src/Illuminate/Support/Composer.php @@ -226,9 +226,7 @@ protected function getProcess(array $command, array $env = []) */ public function setWorkingPath($path) { - $this->workingPath = realpath($path); - - return $this; + return tap($this, fn () => $this->workingPath = realpath($path)); } /** diff --git a/src/Illuminate/Support/Defer/DeferredCallback.php b/src/Illuminate/Support/Defer/DeferredCallback.php index 2bf6ad4cbd1c..059068f85cb0 100644 --- a/src/Illuminate/Support/Defer/DeferredCallback.php +++ b/src/Illuminate/Support/Defer/DeferredCallback.php @@ -25,9 +25,7 @@ public function __construct(public $callback, public ?string $name = null, publi */ public function name(string $name): self { - $this->name = $name; - - return $this; + return tap($this, fn () => $this->name = $name); } /** @@ -38,9 +36,7 @@ public function name(string $name): self */ public function always(bool $always = true): self { - $this->always = $always; - - return $this; + return tap($this, fn () => $this->always = $always); } /** diff --git a/src/Illuminate/Support/Fluent.php b/src/Illuminate/Support/Fluent.php index a1be21b22e83..9d74048b5127 100755 --- a/src/Illuminate/Support/Fluent.php +++ b/src/Illuminate/Support/Fluent.php @@ -213,9 +213,7 @@ public function offsetUnset($offset): void */ public function __call($method, $parameters) { - $this->attributes[$method] = count($parameters) > 0 ? reset($parameters) : true; - - return $this; + return tap($this, fn () => $this->attributes[$method] = count($parameters) > 0 ? reset($parameters) : true); } /** diff --git a/src/Illuminate/Support/Lottery.php b/src/Illuminate/Support/Lottery.php index d6de350dbc9f..01730a6e7195 100644 --- a/src/Illuminate/Support/Lottery.php +++ b/src/Illuminate/Support/Lottery.php @@ -79,9 +79,7 @@ public static function odds($chances, $outOf = null) */ public function winner($callback) { - $this->winner = $callback; - - return $this; + return tap($this, fn () => $this->winner = $callback); } /** @@ -92,9 +90,7 @@ public function winner($callback) */ public function loser($callback) { - $this->loser = $callback; - - return $this; + return tap($this, fn () => $this->loser = $callback); } /** diff --git a/src/Illuminate/Support/Manager.php b/src/Illuminate/Support/Manager.php index dac4731226b2..b0d5124153d7 100755 --- a/src/Illuminate/Support/Manager.php +++ b/src/Illuminate/Support/Manager.php @@ -129,9 +129,7 @@ protected function callCustomCreator($driver) */ public function extend($driver, Closure $callback) { - $this->customCreators[$driver] = $callback; - - return $this; + return tap($this, fn () => $this->customCreators[$driver] = $callback); } /** @@ -162,9 +160,7 @@ public function getContainer() */ public function setContainer(Container $container) { - $this->container = $container; - - return $this; + return tap($this, fn () => $this->container = $container); } /** @@ -174,9 +170,7 @@ public function setContainer(Container $container) */ public function forgetDrivers() { - $this->drivers = []; - - return $this; + return tap($this, fn () => $this->drivers = []); } /** diff --git a/src/Illuminate/Support/MessageBag.php b/src/Illuminate/Support/MessageBag.php index 2ec1612758cf..d3dedeac9af5 100755 --- a/src/Illuminate/Support/MessageBag.php +++ b/src/Illuminate/Support/MessageBag.php @@ -359,9 +359,7 @@ public function getFormat() */ public function setFormat($format = ':message') { - $this->format = $format; - - return $this; + return tap($this, fn () => $this->format = $format); } /** diff --git a/src/Illuminate/Support/MultipleInstanceManager.php b/src/Illuminate/Support/MultipleInstanceManager.php index 05a8c23b4135..b8f040851e86 100644 --- a/src/Illuminate/Support/MultipleInstanceManager.php +++ b/src/Illuminate/Support/MultipleInstanceManager.php @@ -196,9 +196,7 @@ public function purge($name = null) */ public function extend($name, Closure $callback) { - $this->customCreators[$name] = $callback->bindTo($this, $this); - - return $this; + return tap($this, fn () => $this->customCreators[$name] = $callback->bindTo($this, $this)); } /** @@ -209,9 +207,7 @@ public function extend($name, Closure $callback) */ public function setApplication($app) { - $this->app = $app; - - return $this; + return tap($this, fn () => $this->app = $app); } /** diff --git a/src/Illuminate/Support/Sleep.php b/src/Illuminate/Support/Sleep.php index b1825957b6a3..0ab5a646e125 100644 --- a/src/Illuminate/Support/Sleep.php +++ b/src/Illuminate/Support/Sleep.php @@ -168,9 +168,7 @@ protected function duration($duration) */ public function minutes() { - $this->duration->add('minutes', $this->pullPending()); - - return $this; + return tap($this, fn () => $this->duration->add('minutes', $this->pullPending())); } /** @@ -190,9 +188,7 @@ public function minute() */ public function seconds() { - $this->duration->add('seconds', $this->pullPending()); - - return $this; + return tap($this, fn () => $this->duration->add('seconds', $this->pullPending())); } /** @@ -212,9 +208,7 @@ public function second() */ public function milliseconds() { - $this->duration->add('milliseconds', $this->pullPending()); - - return $this; + return tap($this, fn () => $this->duration->add('milliseconds', $this->pullPending())); } /** @@ -234,9 +228,7 @@ public function millisecond() */ public function microseconds() { - $this->duration->add('microseconds', $this->pullPending()); - - return $this; + return tap($this, fn () => $this->duration->add('microseconds', $this->pullPending())); } /** @@ -257,9 +249,7 @@ public function microsecond() */ public function and($duration) { - $this->pending = $duration; - - return $this; + return tap($this, fn () => $this->pending = $duration); } /** @@ -270,9 +260,7 @@ public function and($duration) */ public function while(Closure $callback) { - $this->while = $callback; - - return $this; + return tap($this, fn () => $this->while = $callback); } /** @@ -492,9 +480,7 @@ public static function assertInsomniac() */ protected function shouldNotSleep() { - $this->shouldSleep = false; - - return $this; + return tap($this, fn () => $this->shouldSleep = false); } /** @@ -505,9 +491,7 @@ protected function shouldNotSleep() */ public function when($condition) { - $this->shouldSleep = (bool) value($condition, $this); - - return $this; + return tap($this, fn () => $this->shouldSleep = (bool) value($condition, $this)); } /** diff --git a/src/Illuminate/Support/Stringable.php b/src/Illuminate/Support/Stringable.php index 4723942a9769..4ac125dea85f 100644 --- a/src/Illuminate/Support/Stringable.php +++ b/src/Illuminate/Support/Stringable.php @@ -1322,9 +1322,7 @@ public function fromBase64($strict = false) */ public function dump(...$args) { - dump($this->value, ...$args); - - return $this; + return tap($this, fn () => dump($this->value, ...$args)); } /** diff --git a/src/Illuminate/Support/Testing/Fakes/BusFake.php b/src/Illuminate/Support/Testing/Fakes/BusFake.php index 181fac01b60d..14a1d8367711 100644 --- a/src/Illuminate/Support/Testing/Fakes/BusFake.php +++ b/src/Illuminate/Support/Testing/Fakes/BusFake.php @@ -103,9 +103,7 @@ public function __construct(QueueingDispatcher $dispatcher, $jobsToFake = [], ?B */ public function except($jobsToDispatch) { - $this->jobsToDispatch = array_merge($this->jobsToDispatch, Arr::wrap($jobsToDispatch)); - - return $this; + return tap($this, fn () => $this->jobsToDispatch = array_merge($this->jobsToDispatch, Arr::wrap($jobsToDispatch))); } /** @@ -814,9 +812,7 @@ protected function shouldDispatchCommand($command) */ public function serializeAndRestore(bool $serializeAndRestore = true) { - $this->serializeAndRestore = $serializeAndRestore; - - return $this; + return tap($this, fn () => $this->serializeAndRestore = $serializeAndRestore); } /** @@ -849,9 +845,7 @@ protected function getCommandRepresentation($command) */ public function pipeThrough(array $pipes) { - $this->dispatcher->pipeThrough($pipes); - - return $this; + return tap($this, fn () => $this->dispatcher->pipeThrough($pipes)); } /** @@ -884,9 +878,7 @@ public function getCommandHandler($command) */ public function map(array $map) { - $this->dispatcher->map($map); - - return $this; + return tap($this, fn () => $this->dispatcher->map($map)); } /** diff --git a/src/Illuminate/Support/Testing/Fakes/ExceptionHandlerFake.php b/src/Illuminate/Support/Testing/Fakes/ExceptionHandlerFake.php index f359d6c185bc..131f6719cb97 100644 --- a/src/Illuminate/Support/Testing/Fakes/ExceptionHandlerFake.php +++ b/src/Illuminate/Support/Testing/Fakes/ExceptionHandlerFake.php @@ -228,9 +228,7 @@ public function renderForConsole($output, Throwable $e) */ public function throwOnReport() { - $this->throwOnReport = true; - - return $this; + return tap($this, fn () => $this->throwOnReport = true); } /** @@ -257,9 +255,7 @@ public function throwFirstReported() */ public function setHandler(ExceptionHandler $handler) { - $this->handler = $handler; - - return $this; + return tap($this, fn () => $this->handler = $handler); } /** diff --git a/src/Illuminate/Support/Testing/Fakes/MailFake.php b/src/Illuminate/Support/Testing/Fakes/MailFake.php index 7d4f16b334d0..4541e886a976 100644 --- a/src/Illuminate/Support/Testing/Fakes/MailFake.php +++ b/src/Illuminate/Support/Testing/Fakes/MailFake.php @@ -416,9 +416,7 @@ protected function queuedMailablesOf($type) */ public function mailer($name = null) { - $this->currentMailer = $name; - - return $this; + return tap($this, fn () => $this->currentMailer = $name); } /** @@ -572,9 +570,7 @@ protected function prepareMailableAndCallback($mailable, $callback) */ public function forgetMailers() { - $this->currentMailer = null; - - return $this; + return tap($this, fn () => $this->currentMailer = null); } /** diff --git a/src/Illuminate/Support/Testing/Fakes/NotificationFake.php b/src/Illuminate/Support/Testing/Fakes/NotificationFake.php index bc3f16ce59e0..cc75e318142c 100644 --- a/src/Illuminate/Support/Testing/Fakes/NotificationFake.php +++ b/src/Illuminate/Support/Testing/Fakes/NotificationFake.php @@ -360,9 +360,7 @@ public function channel($name = null) */ public function locale($locale) { - $this->locale = $locale; - - return $this; + return tap($this, fn () => $this->locale = $locale); } /** @@ -373,9 +371,7 @@ public function locale($locale) */ public function serializeAndRestore(bool $serializeAndRestore = true) { - $this->serializeAndRestore = $serializeAndRestore; - - return $this; + return tap($this, fn () => $this->serializeAndRestore = $serializeAndRestore); } /** diff --git a/src/Illuminate/Support/Testing/Fakes/QueueFake.php b/src/Illuminate/Support/Testing/Fakes/QueueFake.php index 28416f604a96..08cec2aa8e75 100644 --- a/src/Illuminate/Support/Testing/Fakes/QueueFake.php +++ b/src/Illuminate/Support/Testing/Fakes/QueueFake.php @@ -75,9 +75,7 @@ public function __construct($app, $jobsToFake = [], $queue = null) */ public function except($jobsToBeQueued) { - $this->jobsToBeQueued = Collection::wrap($jobsToBeQueued)->merge($this->jobsToBeQueued); - - return $this; + return tap($this, fn () => $this->jobsToBeQueued = Collection::wrap($jobsToBeQueued)->merge($this->jobsToBeQueued)); } /** @@ -524,9 +522,7 @@ public function pushedJobs() */ public function serializeAndRestore(bool $serializeAndRestore = true) { - $this->serializeAndRestore = $serializeAndRestore; - - return $this; + return tap($this, fn () => $this->serializeAndRestore = $serializeAndRestore); } /** diff --git a/src/Illuminate/Support/Timebox.php b/src/Illuminate/Support/Timebox.php index 586a5754c05f..7e00ce1af23a 100644 --- a/src/Illuminate/Support/Timebox.php +++ b/src/Illuminate/Support/Timebox.php @@ -56,9 +56,7 @@ public function call(callable $callback, int $microseconds) */ public function returnEarly() { - $this->earlyReturn = true; - - return $this; + return tap($this, fn () => $this->earlyReturn = true); } /** @@ -68,9 +66,7 @@ public function returnEarly() */ public function dontReturnEarly() { - $this->earlyReturn = false; - - return $this; + return tap($this, fn () => $this->earlyReturn = false); } /** diff --git a/src/Illuminate/Support/Traits/Dumpable.php b/src/Illuminate/Support/Traits/Dumpable.php index 44ad14dfc393..1cd15b8e3abc 100644 --- a/src/Illuminate/Support/Traits/Dumpable.php +++ b/src/Illuminate/Support/Traits/Dumpable.php @@ -23,8 +23,6 @@ public function dd(...$args) */ public function dump(...$args) { - dump($this, ...$args); - - return $this; + return tap($this, fn () => dump($this, ...$args)); } } diff --git a/src/Illuminate/Support/ViewErrorBag.php b/src/Illuminate/Support/ViewErrorBag.php index 2865fbfa4bdd..d1593d599876 100644 --- a/src/Illuminate/Support/ViewErrorBag.php +++ b/src/Illuminate/Support/ViewErrorBag.php @@ -59,9 +59,7 @@ public function getBags() */ public function put($key, MessageBagContract $bag) { - $this->bags[$key] = $bag; - - return $this; + return tap($this, fn () => $this->bags[$key] = $bag); } /** diff --git a/src/Illuminate/Testing/AssertableJsonString.php b/src/Illuminate/Testing/AssertableJsonString.php index b970edd3b482..60affa1f21c1 100644 --- a/src/Illuminate/Testing/AssertableJsonString.php +++ b/src/Illuminate/Testing/AssertableJsonString.php @@ -222,9 +222,7 @@ public function assertMissingExact(array $data) */ public function assertMissingPath($path) { - PHPUnit::assertFalse(Arr::has($this->json(), $path)); - - return $this; + return tap($this, fn () => PHPUnit::assertFalse(Arr::has($this->json(), $path))); } /** @@ -254,9 +252,7 @@ public function assertPath($path, $expect) */ public function assertPathCanonicalizing($path, $expect) { - PHPUnit::assertEqualsCanonicalizing($expect, $this->json($path)); - - return $this; + return tap($this, fn () => PHPUnit::assertEqualsCanonicalizing($expect, $this->json($path))); } /** diff --git a/src/Illuminate/Testing/Fluent/Concerns/Debugging.php b/src/Illuminate/Testing/Fluent/Concerns/Debugging.php index 70d5ab310655..ba985b230d7f 100644 --- a/src/Illuminate/Testing/Fluent/Concerns/Debugging.php +++ b/src/Illuminate/Testing/Fluent/Concerns/Debugging.php @@ -16,9 +16,7 @@ trait Debugging */ public function dump(?string $prop = null): self { - dump($this->prop($prop)); - - return $this; + return tap($this, fn () => dump($this->prop($prop))); } /** diff --git a/src/Illuminate/Testing/Fluent/Concerns/Interaction.php b/src/Illuminate/Testing/Fluent/Concerns/Interaction.php index fc811fd95dd7..41dd4e439fa5 100644 --- a/src/Illuminate/Testing/Fluent/Concerns/Interaction.php +++ b/src/Illuminate/Testing/Fluent/Concerns/Interaction.php @@ -52,9 +52,7 @@ public function interacted(): void */ public function etc(): self { - $this->interacted = array_keys($this->prop()); - - return $this; + return tap($this, fn () => $this->interacted = array_keys($this->prop())); } /** diff --git a/src/Illuminate/Testing/PendingCommand.php b/src/Illuminate/Testing/PendingCommand.php index 0fc154612cb8..8ce1472e52a5 100644 --- a/src/Illuminate/Testing/PendingCommand.php +++ b/src/Illuminate/Testing/PendingCommand.php @@ -99,9 +99,7 @@ public function __construct(PHPUnitTestCase $test, Container $app, $command, $pa */ public function expectsQuestion($question, $answer) { - $this->test->expectedQuestions[] = [$question, $answer]; - - return $this; + return tap($this, fn () => $this->test->expectedQuestions[] = [$question, $answer]); } /** @@ -197,9 +195,7 @@ public function doesntExpectOutput($output = null) */ public function expectsOutputToContain($string) { - $this->test->expectedOutputSubstrings[] = $string; - - return $this; + return tap($this, fn () => $this->test->expectedOutputSubstrings[] = $string); } /** @@ -210,9 +206,7 @@ public function expectsOutputToContain($string) */ public function doesntExpectOutputToContain($string) { - $this->test->unexpectedOutputSubstrings[$string] = false; - - return $this; + return tap($this, fn () => $this->test->unexpectedOutputSubstrings[$string] = false); } /** @@ -256,9 +250,7 @@ public function expectsTable($headers, $rows, $tableStyle = 'default', array $co */ public function assertExitCode($exitCode) { - $this->expectedExitCode = $exitCode; - - return $this; + return tap($this, fn () => $this->expectedExitCode = $exitCode); } /** @@ -269,9 +261,7 @@ public function assertExitCode($exitCode) */ public function assertNotExitCode($exitCode) { - $this->unexpectedExitCode = $exitCode; - - return $this; + return tap($this, fn () => $this->unexpectedExitCode = $exitCode); } /** diff --git a/src/Illuminate/Testing/TestResponse.php b/src/Illuminate/Testing/TestResponse.php index 87c50d0ad44c..9019687a1e73 100644 --- a/src/Illuminate/Testing/TestResponse.php +++ b/src/Illuminate/Testing/TestResponse.php @@ -386,9 +386,7 @@ public function assertDownload($filename = null) */ public function assertPlainCookie($cookieName, $value = null) { - $this->assertCookie($cookieName, $value, false); - - return $this; + return tap($this)->assertCookie($cookieName, $value, false); } /** @@ -527,9 +525,7 @@ public function getCookie($cookieName, $decrypt = true, $unserialize = false) */ public function assertContent($value) { - PHPUnit::withResponse($this)->assertSame($value, $this->content()); - - return $this; + return tap($this, fn () => PHPUnit::withResponse($this)->assertSame($value, $this->content())); } /** @@ -540,9 +536,7 @@ public function assertContent($value) */ public function assertStreamedContent($value) { - PHPUnit::withResponse($this)->assertSame($value, $this->streamedContent()); - - return $this; + return tap($this, fn () => PHPUnit::withResponse($this)->assertSame($value, $this->streamedContent())); } /** @@ -740,9 +734,7 @@ public function assertJson($value, $strict = false) */ public function assertJsonPath($path, $expect) { - $this->decodeResponseJson()->assertPath($path, $expect); - - return $this; + return tap($this, fn () => $this->decodeResponseJson()->assertPath($path, $expect)); } /** @@ -754,9 +746,7 @@ public function assertJsonPath($path, $expect) */ public function assertJsonPathCanonicalizing($path, array $expect) { - $this->decodeResponseJson()->assertPathCanonicalizing($path, $expect); - - return $this; + return tap($this, fn () => $this->decodeResponseJson()->assertPathCanonicalizing($path, $expect)); } /** @@ -767,9 +757,7 @@ public function assertJsonPathCanonicalizing($path, array $expect) */ public function assertExactJson(array $data) { - $this->decodeResponseJson()->assertExact($data); - - return $this; + return tap($this, fn () => $this->decodeResponseJson()->assertExact($data)); } /** @@ -780,9 +768,7 @@ public function assertExactJson(array $data) */ public function assertSimilarJson(array $data) { - $this->decodeResponseJson()->assertSimilar($data); - - return $this; + return tap($this, fn () => $this->decodeResponseJson()->assertSimilar($data)); } /** @@ -793,9 +779,7 @@ public function assertSimilarJson(array $data) */ public function assertJsonFragment(array $data) { - $this->decodeResponseJson()->assertFragment($data); - - return $this; + return tap($this, fn () => $this->decodeResponseJson()->assertFragment($data)); } /** @@ -807,9 +791,7 @@ public function assertJsonFragment(array $data) */ public function assertJsonMissing(array $data, $exact = false) { - $this->decodeResponseJson()->assertMissing($data, $exact); - - return $this; + return tap($this, fn () => $this->decodeResponseJson()->assertMissing($data, $exact)); } /** @@ -820,9 +802,7 @@ public function assertJsonMissing(array $data, $exact = false) */ public function assertJsonMissingExact(array $data) { - $this->decodeResponseJson()->assertMissingExact($data); - - return $this; + return tap($this, fn () => $this->decodeResponseJson()->assertMissingExact($data)); } /** @@ -833,9 +813,7 @@ public function assertJsonMissingExact(array $data) */ public function assertJsonMissingPath(string $path) { - $this->decodeResponseJson()->assertMissingPath($path); - - return $this; + return tap($this, fn () => $this->decodeResponseJson()->assertMissingPath($path)); } /** @@ -847,9 +825,7 @@ public function assertJsonMissingPath(string $path) */ public function assertJsonStructure(?array $structure = null, $responseData = null) { - $this->decodeResponseJson()->assertStructure($structure, $responseData); - - return $this; + return tap($this, fn () => $this->decodeResponseJson()->assertStructure($structure, $responseData)); } /** @@ -861,9 +837,7 @@ public function assertJsonStructure(?array $structure = null, $responseData = nu */ public function assertExactJsonStructure(?array $structure = null, $responseData = null) { - $this->decodeResponseJson()->assertStructure($structure, $responseData, true); - - return $this; + return tap($this, fn () => $this->decodeResponseJson()->assertStructure($structure, $responseData, true)); } /** @@ -875,9 +849,7 @@ public function assertExactJsonStructure(?array $structure = null, $responseData */ public function assertJsonCount(int $count, $key = null) { - $this->decodeResponseJson()->assertCount($count, $key); - - return $this; + return tap($this, fn () => $this->decodeResponseJson()->assertCount($count, $key)); } /** @@ -1589,9 +1561,7 @@ public function dump($key = null) */ public function dumpHeaders() { - dump($this->headers->all()); - - return $this; + return tap($this, fn () => dump($this->headers->all())); } /** @@ -1650,9 +1620,7 @@ public function streamedContent() */ public function withExceptions(Collection $exceptions) { - $this->exceptions = $exceptions; - - return $this; + return tap($this, fn () => $this->exceptions = $exceptions); } /** diff --git a/src/Illuminate/Translation/PotentiallyTranslatedString.php b/src/Illuminate/Translation/PotentiallyTranslatedString.php index efcccca28331..2bb1036a01b1 100644 --- a/src/Illuminate/Translation/PotentiallyTranslatedString.php +++ b/src/Illuminate/Translation/PotentiallyTranslatedString.php @@ -49,9 +49,7 @@ public function __construct($string, $translator) */ public function translate($replace = [], $locale = null) { - $this->translation = $this->translator->get($this->string, $replace, $locale); - - return $this; + return tap($this, fn () => $this->translation = $this->translator->get($this->string, $replace, $locale)); } /** @@ -64,9 +62,7 @@ public function translate($replace = [], $locale = null) */ public function translateChoice($number, array $replace = [], $locale = null) { - $this->translation = $this->translator->choice($this->string, $number, $replace, $locale); - - return $this; + return tap($this, fn () => $this->translation = $this->translator->choice($this->string, $number, $replace, $locale)); } /** diff --git a/src/Illuminate/Translation/Translator.php b/src/Illuminate/Translation/Translator.php index 1f82b4bd5c3f..e0eadb7b06e4 100755 --- a/src/Illuminate/Translation/Translator.php +++ b/src/Illuminate/Translation/Translator.php @@ -387,9 +387,7 @@ protected function handleMissingTranslationKey($key, $replace, $locale, $fallbac */ public function handleMissingKeysUsing(?callable $callback) { - $this->missingTranslationKeyCallback = $callback; - - return $this; + return tap($this, fn () => $this->missingTranslationKeyCallback = $callback); } /** diff --git a/src/Illuminate/Validation/ClosureValidationRule.php b/src/Illuminate/Validation/ClosureValidationRule.php index 0ce67698aede..66fcf38c53ce 100644 --- a/src/Illuminate/Validation/ClosureValidationRule.php +++ b/src/Illuminate/Validation/ClosureValidationRule.php @@ -87,8 +87,6 @@ public function message() */ public function setValidator($validator) { - $this->validator = $validator; - - return $this; + return tap($this, fn () => $this->validator = $validator); } } diff --git a/src/Illuminate/Validation/Factory.php b/src/Illuminate/Validation/Factory.php index 6ebfcac50d2d..7ebcb85bce1c 100755 --- a/src/Illuminate/Validation/Factory.php +++ b/src/Illuminate/Validation/Factory.php @@ -328,8 +328,6 @@ public function getContainer() */ public function setContainer(Container $container) { - $this->container = $container; - - return $this; + return tap($this, fn () => $this->container = $container); } } diff --git a/src/Illuminate/Validation/InvokableValidationRule.php b/src/Illuminate/Validation/InvokableValidationRule.php index 8836e6c4a21d..7836d69e4bbf 100644 --- a/src/Illuminate/Validation/InvokableValidationRule.php +++ b/src/Illuminate/Validation/InvokableValidationRule.php @@ -136,9 +136,7 @@ public function message() */ public function setData($data) { - $this->data = $data; - - return $this; + return tap($this, fn () => $this->data = $data); } /** @@ -149,8 +147,6 @@ public function setData($data) */ public function setValidator($validator) { - $this->validator = $validator; - - return $this; + return tap($this, fn () => $this->validator = $validator); } } diff --git a/src/Illuminate/Validation/Rules/Can.php b/src/Illuminate/Validation/Rules/Can.php index 8565dd6d0b78..10f53239d6bf 100644 --- a/src/Illuminate/Validation/Rules/Can.php +++ b/src/Illuminate/Validation/Rules/Can.php @@ -79,8 +79,6 @@ public function message() */ public function setValidator($validator) { - $this->validator = $validator; - - return $this; + return tap($this, fn () => $this->validator = $validator); } } diff --git a/src/Illuminate/Validation/Rules/DatabaseRule.php b/src/Illuminate/Validation/Rules/DatabaseRule.php index 44c8d0e273aa..fd696ff49b66 100644 --- a/src/Illuminate/Validation/Rules/DatabaseRule.php +++ b/src/Illuminate/Validation/Rules/DatabaseRule.php @@ -184,9 +184,7 @@ public function whereNotIn($column, $values) */ public function withoutTrashed($deletedAtColumn = 'deleted_at') { - $this->whereNull($deletedAtColumn); - - return $this; + return tap($this)->whereNull($deletedAtColumn); } /** @@ -197,9 +195,7 @@ public function withoutTrashed($deletedAtColumn = 'deleted_at') */ public function onlyTrashed($deletedAtColumn = 'deleted_at') { - $this->whereNotNull($deletedAtColumn); - - return $this; + return tap($this)->whereNotNull($deletedAtColumn); } /** @@ -210,9 +206,7 @@ public function onlyTrashed($deletedAtColumn = 'deleted_at') */ public function using(Closure $callback) { - $this->using[] = $callback; - - return $this; + return tap($this, fn () => $this->using[] = $callback); } /** diff --git a/src/Illuminate/Validation/Rules/Dimensions.php b/src/Illuminate/Validation/Rules/Dimensions.php index bdbaf13a2ea1..fe845e6fd132 100644 --- a/src/Illuminate/Validation/Rules/Dimensions.php +++ b/src/Illuminate/Validation/Rules/Dimensions.php @@ -35,9 +35,7 @@ public function __construct(array $constraints = []) */ public function width($value) { - $this->constraints['width'] = $value; - - return $this; + return tap($this, fn () => $this->constraints['width'] = $value); } /** @@ -48,9 +46,7 @@ public function width($value) */ public function height($value) { - $this->constraints['height'] = $value; - - return $this; + return tap($this, fn () => $this->constraints['height'] = $value); } /** @@ -61,9 +57,7 @@ public function height($value) */ public function minWidth($value) { - $this->constraints['min_width'] = $value; - - return $this; + return tap($this, fn () => $this->constraints['min_width'] = $value); } /** @@ -74,9 +68,7 @@ public function minWidth($value) */ public function minHeight($value) { - $this->constraints['min_height'] = $value; - - return $this; + return tap($this, fn () => $this->constraints['min_height'] = $value); } /** @@ -87,9 +79,7 @@ public function minHeight($value) */ public function maxWidth($value) { - $this->constraints['max_width'] = $value; - - return $this; + return tap($this, fn () => $this->constraints['max_width'] = $value); } /** @@ -100,9 +90,7 @@ public function maxWidth($value) */ public function maxHeight($value) { - $this->constraints['max_height'] = $value; - - return $this; + return tap($this, fn () => $this->constraints['max_height'] = $value); } /** @@ -113,9 +101,7 @@ public function maxHeight($value) */ public function ratio($value) { - $this->constraints['ratio'] = $value; - - return $this; + return tap($this, fn () => $this->constraints['ratio'] = $value); } /** @@ -126,9 +112,7 @@ public function ratio($value) */ public function minRatio($value) { - $this->constraints['min_ratio'] = $value; - - return $this; + return tap($this, fn () => $this->constraints['min_ratio'] = $value); } /** @@ -139,9 +123,7 @@ public function minRatio($value) */ public function maxRatio($value) { - $this->constraints['max_ratio'] = $value; - - return $this; + return tap($this, fn () => $this->constraints['max_ratio'] = $value); } /** diff --git a/src/Illuminate/Validation/Rules/Enum.php b/src/Illuminate/Validation/Rules/Enum.php index 59991bbdd7c6..9bcee7b5a980 100644 --- a/src/Illuminate/Validation/Rules/Enum.php +++ b/src/Illuminate/Validation/Rules/Enum.php @@ -86,9 +86,7 @@ public function passes($attribute, $value) */ public function only($values) { - $this->only = $values instanceof Arrayable ? $values->toArray() : Arr::wrap($values); - - return $this; + return tap($this, fn () => $this->only = $values instanceof Arrayable ? $values->toArray() : Arr::wrap($values)); } /** @@ -99,9 +97,7 @@ public function only($values) */ public function except($values) { - $this->except = $values instanceof Arrayable ? $values->toArray() : Arr::wrap($values); - - return $this; + return tap($this, fn () => $this->except = $values instanceof Arrayable ? $values->toArray() : Arr::wrap($values)); } /** @@ -141,8 +137,6 @@ public function message() */ public function setValidator($validator) { - $this->validator = $validator; - - return $this; + return tap($this, fn () => $this->validator = $validator); } } diff --git a/src/Illuminate/Validation/Rules/File.php b/src/Illuminate/Validation/Rules/File.php index 78ce3556cf4a..cc141c9b80ac 100644 --- a/src/Illuminate/Validation/Rules/File.php +++ b/src/Illuminate/Validation/Rules/File.php @@ -144,9 +144,7 @@ public static function types($mimetypes) */ public function extensions($extensions) { - $this->allowedExtensions = (array) $extensions; - - return $this; + return tap($this, fn () => $this->allowedExtensions = (array) $extensions); } /** @@ -186,9 +184,7 @@ public function between($minSize, $maxSize) */ public function min($size) { - $this->minimumFileSize = $this->toKilobytes($size); - - return $this; + return tap($this, fn () => $this->minimumFileSize = $this->toKilobytes($size)); } /** @@ -199,9 +195,7 @@ public function min($size) */ public function max($size) { - $this->maximumFileSize = $this->toKilobytes($size); - - return $this; + return tap($this, fn () => $this->maximumFileSize = $this->toKilobytes($size)); } /** @@ -235,9 +229,7 @@ protected function toKilobytes($size) */ public function rules($rules) { - $this->customRules = array_merge($this->customRules, Arr::wrap($rules)); - - return $this; + return tap($this, fn () => $this->customRules = array_merge($this->customRules, Arr::wrap($rules))); } /** @@ -357,9 +349,7 @@ public function message() */ public function setValidator($validator) { - $this->validator = $validator; - - return $this; + return tap($this, fn () => $this->validator = $validator); } /** @@ -370,8 +360,6 @@ public function setValidator($validator) */ public function setData($data) { - $this->data = $data; - - return $this; + return tap($this, fn () => $this->data = $data); } } diff --git a/src/Illuminate/Validation/Rules/ImageFile.php b/src/Illuminate/Validation/Rules/ImageFile.php index 2cee97e5bc00..20f0b4530c42 100644 --- a/src/Illuminate/Validation/Rules/ImageFile.php +++ b/src/Illuminate/Validation/Rules/ImageFile.php @@ -21,8 +21,6 @@ public function __construct() */ public function dimensions($dimensions) { - $this->rules($dimensions); - - return $this; + return tap($this, fn () => $this->rules($dimensions)); } } diff --git a/src/Illuminate/Validation/Rules/Password.php b/src/Illuminate/Validation/Rules/Password.php index 3fb66e9ee2bd..f7943a338285 100644 --- a/src/Illuminate/Validation/Rules/Password.php +++ b/src/Illuminate/Validation/Rules/Password.php @@ -181,9 +181,7 @@ public static function sometimes() */ public function setValidator($validator) { - $this->validator = $validator; - - return $this; + return tap($this, fn () => $this->validator = $validator); } /** @@ -194,9 +192,7 @@ public function setValidator($validator) */ public function setData($data) { - $this->data = $data; - - return $this; + return tap($this, fn () => $this->data = $data); } /** @@ -218,9 +214,7 @@ public static function min($size) */ public function max($size) { - $this->max = $size; - - return $this; + return tap($this, fn () => $this->max = $size); } /** @@ -245,9 +239,7 @@ public function uncompromised($threshold = 0) */ public function mixedCase() { - $this->mixedCase = true; - - return $this; + return tap($this, fn () => $this->mixedCase = true); } /** @@ -257,9 +249,7 @@ public function mixedCase() */ public function letters() { - $this->letters = true; - - return $this; + return tap($this, fn () => $this->letters = true); } /** @@ -269,9 +259,7 @@ public function letters() */ public function numbers() { - $this->numbers = true; - - return $this; + return tap($this, fn () => $this->numbers = true); } /** @@ -281,9 +269,7 @@ public function numbers() */ public function symbols() { - $this->symbols = true; - - return $this; + return tap($this, fn () => $this->symbols = true); } /** @@ -294,9 +280,7 @@ public function symbols() */ public function rules($rules) { - $this->customRules = Arr::wrap($rules); - - return $this; + return tap($this, fn () => $this->customRules = Arr::wrap($rules)); } /** diff --git a/src/Illuminate/Validation/ValidationException.php b/src/Illuminate/Validation/ValidationException.php index 1418874333b8..2d8cc7e0bb57 100644 --- a/src/Illuminate/Validation/ValidationException.php +++ b/src/Illuminate/Validation/ValidationException.php @@ -120,9 +120,7 @@ public function errors() */ public function status($status) { - $this->status = $status; - - return $this; + return tap($this, fn () => $this->status = $status); } /** @@ -133,9 +131,7 @@ public function status($status) */ public function errorBag($errorBag) { - $this->errorBag = $errorBag; - - return $this; + return tap($this, fn () => $this->errorBag = $errorBag); } /** @@ -146,9 +142,7 @@ public function errorBag($errorBag) */ public function redirectTo($url) { - $this->redirectTo = $url; - - return $this; + return tap($this, fn () => $this->redirectTo = $url); } /** diff --git a/src/Illuminate/Validation/Validator.php b/src/Illuminate/Validation/Validator.php index dff9a156fc19..903070c9e544 100755 --- a/src/Illuminate/Validation/Validator.php +++ b/src/Illuminate/Validation/Validator.php @@ -1140,9 +1140,7 @@ public function setData(array $data) { $this->data = $this->parseData($data); - $this->setRules($this->initialRules); - - return $this; + return tap($this)->setRules($this->initialRules); } /** @@ -1208,9 +1206,7 @@ public function setRules(array $rules) $this->rules = []; - $this->addRules($rules); - - return $this; + return tap($this)->addRules($rules); } /** @@ -1290,9 +1286,7 @@ private function dataForSometimesIteration(string $attribute, $removeLastSegment */ public function stopOnFirstFailure($stopOnFirstFailure = true) { - $this->stopOnFirstFailure = $stopOnFirstFailure; - - return $this; + return tap($this, fn () => $this->stopOnFirstFailure = $stopOnFirstFailure); } /** @@ -1419,9 +1413,7 @@ public function addReplacer($rule, $replacer) */ public function setCustomMessages(array $messages) { - $this->customMessages = array_merge($this->customMessages, $messages); - - return $this; + return tap($this, fn () => $this->customMessages = array_merge($this->customMessages, $messages)); } /** @@ -1432,9 +1424,7 @@ public function setCustomMessages(array $messages) */ public function setAttributeNames(array $attributes) { - $this->customAttributes = $attributes; - - return $this; + return tap($this, fn () => $this->customAttributes = $attributes); } /** @@ -1445,9 +1435,7 @@ public function setAttributeNames(array $attributes) */ public function addCustomAttributes(array $attributes) { - $this->customAttributes = array_merge($this->customAttributes, $attributes); - - return $this; + return tap($this, fn () => $this->customAttributes = array_merge($this->customAttributes, $attributes)); } /** @@ -1458,9 +1446,7 @@ public function addCustomAttributes(array $attributes) */ public function setImplicitAttributesFormatter(?callable $formatter = null) { - $this->implicitAttributesFormatter = $formatter; - - return $this; + return tap($this, fn () => $this->implicitAttributesFormatter = $formatter); } /** @@ -1471,9 +1457,7 @@ public function setImplicitAttributesFormatter(?callable $formatter = null) */ public function setValueNames(array $values) { - $this->customValues = $values; - - return $this; + return tap($this, fn () => $this->customValues = $values); } /** @@ -1484,9 +1468,7 @@ public function setValueNames(array $values) */ public function addCustomValues(array $customValues) { - $this->customValues = array_merge($this->customValues, $customValues); - - return $this; + return tap($this, fn () => $this->customValues = array_merge($this->customValues, $customValues)); } /** @@ -1571,9 +1553,7 @@ public function setException($exception) */ public function ensureExponentWithinAllowedRangeUsing($callback) { - $this->ensureExponentWithinAllowedRangeUsing = $callback; - - return $this; + return tap($this, fn () => $this->ensureExponentWithinAllowedRangeUsing = $callback); } /** diff --git a/src/Illuminate/View/Compilers/BladeCompiler.php b/src/Illuminate/View/Compilers/BladeCompiler.php index 7ea0b6a4f263..d4a5fb2eee67 100644 --- a/src/Illuminate/View/Compilers/BladeCompiler.php +++ b/src/Illuminate/View/Compilers/BladeCompiler.php @@ -986,9 +986,7 @@ public function getCustomDirectives() */ public function prepareStringsForCompilationUsing(callable $callback) { - $this->prepareStringsForCompilationUsing[] = $callback; - - return $this; + return tap($this, fn () => $this->prepareStringsForCompilationUsing[] = $callback); } /** diff --git a/src/Illuminate/View/Component.php b/src/Illuminate/View/Component.php index af48709a31a3..ae7d2c108108 100644 --- a/src/Illuminate/View/Component.php +++ b/src/Illuminate/View/Component.php @@ -357,9 +357,7 @@ protected function ignoredMethods() */ public function withName($name) { - $this->componentName = $name; - - return $this; + return tap($this, fn () => $this->componentName = $name); } /** diff --git a/src/Illuminate/View/ComponentSlot.php b/src/Illuminate/View/ComponentSlot.php index f363391cffc9..a738e235485e 100644 --- a/src/Illuminate/View/ComponentSlot.php +++ b/src/Illuminate/View/ComponentSlot.php @@ -44,9 +44,7 @@ public function __construct($contents = '', $attributes = []) */ public function withAttributes(array $attributes) { - $this->attributes = new ComponentAttributeBag($attributes); - - return $this; + return tap($this, fn () => $this->attributes = new ComponentAttributeBag($attributes)); } /** diff --git a/src/Illuminate/View/Factory.php b/src/Illuminate/View/Factory.php index e5efe067e86e..1ef960b48e60 100755 --- a/src/Illuminate/View/Factory.php +++ b/src/Illuminate/View/Factory.php @@ -444,9 +444,7 @@ public function prependLocation($location) */ public function addNamespace($namespace, $hints) { - $this->finder->addNamespace($namespace, $hints); - - return $this; + return tap($this, fn () => $this->finder->addNamespace($namespace, $hints)); } /** @@ -458,9 +456,7 @@ public function addNamespace($namespace, $hints) */ public function prependNamespace($namespace, $hints) { - $this->finder->prependNamespace($namespace, $hints); - - return $this; + return tap($this, fn () => $this->finder->prependNamespace($namespace, $hints)); } /** @@ -472,9 +468,7 @@ public function prependNamespace($namespace, $hints) */ public function replaceNamespace($namespace, $hints) { - $this->finder->replaceNamespace($namespace, $hints); - - return $this; + return tap($this, fn () => $this->finder->replaceNamespace($namespace, $hints)); } /** diff --git a/src/Illuminate/View/FileViewFinder.php b/src/Illuminate/View/FileViewFinder.php index c2f49bd68bde..9f08cb331d25 100755 --- a/src/Illuminate/View/FileViewFinder.php +++ b/src/Illuminate/View/FileViewFinder.php @@ -285,9 +285,7 @@ public function getFilesystem() */ public function setPaths($paths) { - $this->paths = $paths; - - return $this; + return tap($this, fn () => $this->paths = $paths); } /**