<?php
-// vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
+// vim: set expandtab tabstop=4 shiftwidth=4 binary:
// +--------------------------------------------------------------------+
// | BIFE - Buil It FastEr |
// +--------------------------------------------------------------------+
strtr(ucwords(strtr(strtolower($name), ':', ' ')), ' ', '/') .
'.php';
if (@include_once $inc) {
- $this->includes[] = $inc;
+ $this->requires[] = $inc;
}
}
if (class_exists($class)) {
fclose($fp);
if ($this->cache) {
$fp = fopen($cache, 'w');
- fputs($fp, serialize($this->includes) . "\n");
+ fputs($fp, serialize($this->requires) . "\n");
fputs($fp, serialize($this->root));
fclose($fp);
}