counter-cache/src/Traits/CounterCache.php

16 lines
198 B
PHP
Raw Normal View History

2015-12-06 16:02:48 +00:00
<?php
2016-07-28 09:56:24 +00:00
2015-12-06 16:02:48 +00:00
namespace Nodes\CounterCache\Traits;
/**
2016-07-28 09:56:24 +00:00
* Trait CounterCache.
2015-12-06 16:02:48 +00:00
*
* @trait
*/
trait CounterCache
{
use CounterCacheSaved,
CounterCacheDeleted,
CounterCacheRestored;
2016-07-28 09:56:24 +00:00
}