aboutsummaryrefslogtreecommitdiff
path: root/classes/PerlSingleton.php
diff options
context:
space:
mode:
Diffstat (limited to 'classes/PerlSingleton.php')
-rw-r--r--classes/PerlSingleton.php17
1 files changed, 0 insertions, 17 deletions
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;
- }
-}