Skip to content

Commit

Permalink
Rename ActiveRecordCacheBase as AbstractActiveRecordCache #16
Browse files Browse the repository at this point in the history
  • Loading branch information
olvlvl committed Nov 6, 2016
1 parent fd3b63c commit 6789e95
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
/**
* Abstract root class for an active records cache.
*/
abstract class ActiveRecordCacheBase implements ActiveRecordCache
abstract class AbstractActiveRecordCache implements ActiveRecordCache
{
/**
* Model using the cache.
Expand Down
2 changes: 1 addition & 1 deletion lib/ActiveRecord/RuntimeActiveRecordCache.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/**
* Cache records during run time.
*/
class RuntimeActiveRecordCache extends ActiveRecordCacheBase implements \IteratorAggregate
class RuntimeActiveRecordCache extends AbstractActiveRecordCache implements \IteratorAggregate
{
/**
* Cached records.
Expand Down

0 comments on commit 6789e95

Please sign in to comment.