aboutsummaryrefslogtreecommitdiff
path: root/classes
diff options
context:
space:
mode:
authorSilvio <silvio@devlet.com.br>2010-07-23 17:54:11 -0300
committerSilvio <silvio@devlet.com.br>2010-07-23 17:54:11 -0300
commit4f111a27513f7811df4848773b24fe17541d1fb7 (patch)
tree91468f62a483c8efd4dac0174fbf410fa8aae888 /classes
parent770b3c7364dcea139eb5a2204b3648c4825e3f69 (diff)
downloadcinisis-4f111a27513f7811df4848773b24fe17541d1fb7.tar.gz
cinisis-4f111a27513f7811df4848773b24fe17541d1fb7.tar.bz2
Removing the perl singleton
Diffstat (limited to 'classes')
-rw-r--r--classes/BiblioIsisDb.php3
-rw-r--r--classes/PerlSingleton.php17
2 files changed, 1 insertions, 19 deletions
diff --git a/classes/BiblioIsisDb.php b/classes/BiblioIsisDb.php
index ee3441c..22586ed 100644
--- a/classes/BiblioIsisDb.php
+++ b/classes/BiblioIsisDb.php
@@ -42,8 +42,7 @@ class BiblioIsisDb implements IsisDb {
}
// Create a perl instance.
- //$this->perl = new Perl();
- $this->perl = PerlSingleton::getInstance();
+ $this->perl = new Perl();
}
/**
diff --git a/classes/PerlSingleton.php b/classes/PerlSingleton.php
deleted file mode 100644
index c606cfe..0000000
--- a/classes/PerlSingleton.php
+++ /dev/null
@@ -1,17 +0,0 @@
-<?php
-
-class PerlSingleton {
- private static $instance = null;
-
- private function __construct() {
- $this->perl = new Perl();
- }
-
- public static function getInstance() {
- if(self::$instance == null) {
- self::$instance = new self;
- }
-
- return self::$instance->perl;
- }
-}