Example #1
0
 /**
  * Clear the cache for the given authority.
  *
  * @param  \Illuminate\Database\Eloquent\Model  $authority
  * @return $this
  */
 public function refreshFor(Model $authority)
 {
     if ($this->usesCachedClipboard()) {
         $this->clipboard->refreshFor($authority);
     }
     return $this;
 }