Total Complexity | 1 |
Total Lines | 12 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | # frozen_string_literal: true |
||
13 | class Enumerator < Interface |
||
14 | # :nocov: |
||
15 | # Enumerates entity attributes |
||
16 | # |
||
17 | # @param [Object] entity |
||
18 | # @param [AMA::Entity::Mapper::Type] type |
||
19 | # @param [AMA::Entity::Mapper::Context] context |
||
20 | def enumerate(entity, type, context = nil) |
||
21 | abstract_method |
||
22 | end |
||
23 | # :nocov: |
||
24 | end |
||
25 | end |
||
29 |