Split up classes into separate way, to allow autoloader to do it's work Signed-off-by: Diederik de Groot <ddegroot@talon.nl>
24 lines
551 B
PHP
24 lines
551 B
PHP
<?php
|
|
namespace PROVISION\ResolveCache;
|
|
|
|
abstract class ResolveCache {
|
|
abstract protected function addFile($filename, $realpath);
|
|
abstract protected function removeFile($filename);
|
|
abstract protected function check($filename);
|
|
abstract protected function getPath($filename);
|
|
}
|
|
|
|
/*
|
|
class SqliteCache extends ResolveCache {
|
|
function __construct() {
|
|
}
|
|
function __destruct() {
|
|
}
|
|
public function addFile($filename, $realpath);
|
|
public function removeFile($filename);
|
|
public function check($filename);
|
|
public function getPath($filename);
|
|
}
|
|
*/
|
|
|
|
?>
|