src/Spiritix/LadaCache/Database/Pivot.php
<?php
/**
* This file is part of the spiritix/lada-cache package.
*
* @copyright Copyright (c) Matthias Isler <mi@matthias-isler.ch>
* @license MIT
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Spiritix\LadaCache\Database;
use Illuminate\Database\Eloquent\Relations\Pivot as PivotRelation;
/**
* Overrides Laravel's pivot class.
*
* @package Spiritix\LadaCache\Database
* @author Matthias Isler <mi@matthias-isler.ch>
*/
class Pivot extends PivotRelation
{
use LadaCacheTrait;
}