summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/status/extended/base.rb
blob: 1d7819c6891546f30c80e2808a50ea9384501e42 (plain)
1
2
3
4
5
6
7
8
9
10
11
module Gitlab::Ci
  module Status
    module Extended
      module Base
        def matches?(_subject)
          raise NotImplementedError
        end
      end
    end
  end
end