diff options
Diffstat (limited to 'PHPZxing/PHPZxingBase.php')
-rw-r--r-- | PHPZxing/PHPZxingBase.php | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/PHPZxing/PHPZxingBase.php b/PHPZxing/PHPZxingBase.php new file mode 100644 index 0000000..d6ccf2b --- /dev/null +++ b/PHPZxing/PHPZxingBase.php @@ -0,0 +1,18 @@ +<?php +namespace PHPZxing; + +class PHPZxingBase { + + private $_JAVASE_PATH = 'javase-3.2.0.jar'; + + private $_JAVA_PATH = "/usr/bin/java"; + + public function getJavaPath() { + echo __DIR__; + return $this->_JAVA_PATH; + } + + public function getJARPath() { + return $this->_JAVASE_PATH; + } +}
\ No newline at end of file |