summaryrefslogtreecommitdiff
path: root/ext/phar/phar/phar.inc
diff options
context:
space:
mode:
Diffstat (limited to 'ext/phar/phar/phar.inc')
-rwxr-xr-xext/phar/phar/phar.inc80
1 files changed, 0 insertions, 80 deletions
diff --git a/ext/phar/phar/phar.inc b/ext/phar/phar/phar.inc
deleted file mode 100755
index a7c6f6d5fe..0000000000
--- a/ext/phar/phar/phar.inc
+++ /dev/null
@@ -1,80 +0,0 @@
-<?php
-
-/**
- * @file phar.inc
- * @ingroup Phar
- * @brief class Phar
- * @author Marcus Boerger
- * @date 2007 - 2007
- *
- * Phar Command
- */
-// {{{ class Phar extends PHP_Archive
-/**
- * Phar class
- *
- * @ingroup Phar
- * @brief Phar implementation
- * @author Marcus Boerger
- * @version 1.0
- */
-class Phar extends PHP_Archive implements RecursiveIterator
-{
- function getSignature()
- {
- return false;
- }
-
- function getAlias()
- {
- return false;
- }
-
- function rewind()
- {
- }
-
- function valid()
- {
- return false;
- }
-
- function current()
- {
- }
-
- function key()
- {
- }
-
- function next()
- {
- }
-
- function hasChildren()
- {
- return false;
- }
-
- function getChildren()
- {
- }
-
- function hasMetadata()
- {
- }
-
- function getMetadata()
- {
- }
-
- function getStub()
- {
- }
-
- function setStub()
- {
- }
-}
-
-?> \ No newline at end of file