Remove all cache keys from specified configuration.
This method is non-filterable.

Parameters

  • string $name The cache configuration to be cleared

Returns

boolean True on successful clearing, false otherwise

Source

						public static function clear($name) {
		$settings = static::config();
		return (isset($settings[$name])) ? static::adapter($name)->clear() : false;
	}