Source

						public static function delete($key) {
		if (isset(static::$_tells[$key])) {
			$tells = static::$_tells;
			unset($tells[$key]);
			static::reset();
			unlink(static::$path);
			static::save($tells);
			return true;
		}
	}