From 7fe908c50c8dbc5cc05f571dbe11d66141caacd4 Mon Sep 17 00:00:00 2001
From: Marius Cramer <m.cramer@pixcept.de>
Date: Thu, 14 Nov 2013 09:01:22 -0500
Subject: [PATCH] Cleaning up code to match coding guidelines

---
 install/patches/upd_0001.php |   16 +++++++++-------
 1 files changed, 9 insertions(+), 7 deletions(-)

diff --git a/install/patches/upd_0001.php b/install/patches/upd_0001.php
index 93d6967..596bef5 100644
--- a/install/patches/upd_0001.php
+++ b/install/patches/upd_0001.php
@@ -1,6 +1,6 @@
 <?php
 
-if(!defined('INSTALLER_RUN')) die('Patch update file access violation.'); 
+if(!defined('INSTALLER_RUN')) die('Patch update file access violation.');
 
 /*
 	Example installer patch update class. the classname must match
@@ -10,12 +10,14 @@
 
 class upd_0001 extends installer_patch_update {
 
-   public function onBeforeSQL() {
-     // Do something
-   }
-   public function onAfterSQL() {
-     // Do something
-   }
+	public function onBeforeSQL() {
+		// Do something
+	}
+
+	public function onAfterSQL() {
+		// Do something
+	}
+
 }
 
 ?>

--
Gitblit v1.9.1