From 40165b201a3aea8b85bd355f868a48de831bda9d Mon Sep 17 00:00:00 2001
From: barrett <barrett@52745.no-reply.drupal.org>
Date: Thu, 17 May 2012 06:14:34 -0400
Subject: [PATCH] style cleanup based on coder review: add @file block and use
 all-caps for PHP constants

---
 nagios.drush.inc |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/nagios.drush.inc b/nagios.drush.inc
index 5613367..34cf800 100644
--- a/nagios.drush.inc
+++ b/nagios.drush.inc
@@ -1,4 +1,9 @@
 <?php
+/**
+ * @file
+ * Provides drush integration for the Nagios module.
+ */
+
 
 /**
  * Implements hook_drush_command().
@@ -32,7 +37,7 @@ function drush_nagios_list() {
 /**
  * Drush command callback: nagios-check.
  */
-function drush_nagios_check($check = null) {
+function drush_nagios_check($check = NULL) {
   if (isset($check)) {
     foreach (module_implements('nagios_checks') as $module) {
       if (in_array($check, array_keys(module_invoke($module, 'nagios_checks')))) {
-- 
1.7.4.4

