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