class RuboCop::Cop::Chef::Correctness::InvalidNotificationTiming

Valid notification timings are ‘:immediately`, `:immediate` (alias for :immediately), `:delayed`, and `:before`.

@example

### incorrect

template '/etc/www/configures-apache.conf' do
  notifies :restart, 'service[apache]', :nope
end

### correct

template '/etc/www/configures-apache.conf' do
  notifies :restart, 'service[apache]', :immediately
end