Checks if the current asset manager has a certain asset.
string $name an asset name:
Boolean True if the asset has been set, false if not
Overrides AssetManager::has
public function has($name) {
if (!$this->loaded) {
$this
->load();
}
return isset($this->formulae[$name]) || parent::has($name);
}