# VarStorableInterface
Chevere\Interfaces\VarStorable\VarStorableInterface
# Description
Describes the component in charge of handling storable variables.
# Methods
# __construct()
# Parameters
$var
THROWS
- NotVarStorableException if
$var
can't be exported.
# var()
Provides access to $var
.
RETURN
mixed
# toExport()
Shorthand for \var_export($var)
.
RETURN
string
# toSerialize()
Shorthand for \serialize($var)
.
RETURN
string