Purge.apply()   A
last analyzed

Complexity

Conditions 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
c 1
b 0
f 0
dl 0
loc 3
rs 10
1
# frozen_string_literal: true
2
3
require_relative '../../../action'
4
5
module AMA
6
  module Chef
7
    module User
8
      class Action
9
        module Account
10
          module PrivateKey
11
            class Purge < Action
12
              attr_accessor :account
13
14
              # @param [AMA::Chef::User::Model::Account] account
15
              def initialize(account)
16
                @account = account
17
              end
18
19
              def apply(*)
20
                noop
21
              end
22
            end
23
          end
24
        end
25
      end
26
    end
27
  end
28
end
29