15 lines
233 B
PHP
15 lines
233 B
PHP
![]() |
<?php
|
||
|
namespace Nodes\CounterCache\Traits;
|
||
|
|
||
|
/**
|
||
|
* Trait CounterCache
|
||
|
*
|
||
|
* @trait
|
||
|
* @package Nodes\CounterCache\Traits
|
||
|
*/
|
||
|
trait CounterCache
|
||
|
{
|
||
|
use CounterCacheSaved,
|
||
|
CounterCacheDeleted,
|
||
|
CounterCacheRestored;
|
||
|
}
|