You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
355 B
PHP
18 lines
355 B
PHP
<?php
|
|
|
|
namespace Illuminate\Support\Traits;
|
|
|
|
trait Tappable
|
|
{
|
|
/**
|
|
* Call the given Closure with this instance then return the instance.
|
|
*
|
|
* @param callable|null $callback
|
|
* @return $this|\Illuminate\Support\HigherOrderTapProxy
|
|
*/
|
|
public function tap($callback = null)
|
|
{
|
|
return tap($this, $callback);
|
|
}
|
|
}
|