From cc55224c919a727b16897879d7c35f54ea11aaf8 Mon Sep 17 00:00:00 2001
From: Antonio Ospite <ao2@ao2.it>
Date: Mon, 16 May 2016 15:34:20 +0200
Subject: [PATCH] tweeper: fix style issues found by Coder Sniffer

----------------------------------------------------------------------
FOUND 3 ERRORS AFFECTING 2 LINES
----------------------------------------------------------------------
 1 | ERROR | [x] Missing file doc comment
 4 | ERROR | [x] "require" is a statement not a function; no
   |       |     parentheses are required
 4 | ERROR | [x] Language constructs must be followed by a single
   |       |     space; expected "require (" but found "require("
---
 tweeper | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/tweeper b/tweeper
index a13752f..6256e20 100755
--- a/tweeper
+++ b/tweeper
@@ -1,4 +1,9 @@
 #!/usr/bin/env php
 <?php
 
-require(dirname(__FILE__) . '/tweeper.php');
+/**
+ * @file
+ * CLI file to run tweeper.
+ */
+
+require dirname(__FILE__) . '/tweeper.php';
-- 
2.1.4