Skip to content

Instantly share code, notes, and snippets.

@jaggy
Created October 24, 2018 09:30
Show Gist options
  • Save jaggy/a2a524178e9842182e25bc44492c88e5 to your computer and use it in GitHub Desktop.
Save jaggy/a2a524178e9842182e25bc44492c88e5 to your computer and use it in GitHub Desktop.
<?php
namespace App;
trait Tappable
{
public function tap($callback)
{
return tap($this, $callback);
}
public function getTapAttribute()
{
return tap($this);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment