Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

function clear() -- Set populated arrays to empty arrays #14067

Merged
merged 3 commits into from
May 9, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions framework/web/View.php
Original file line number Diff line number Diff line change
Expand Up @@ -103,32 +103,32 @@ class View extends \yii\base\View
* @var array the registered meta tags.
* @see registerMetaTag()
*/
public $metaTags;
public $metaTags = [];
/**
* @var array the registered link tags.
* @see registerLinkTag()
*/
public $linkTags;
public $linkTags = [];
/**
* @var array the registered CSS code blocks.
* @see registerCss()
*/
public $css;
public $css = [];
/**
* @var array the registered CSS files.
* @see registerCssFile()
*/
public $cssFiles;
public $cssFiles = [];
/**
* @var array the registered JS code blocks
* @see registerJs()
*/
public $js;
public $js = [];
/**
* @var array the registered JS files.
* @see registerJsFile()
*/
public $jsFiles;
public $jsFiles = [];

private $_assetManager;

Expand Down Expand Up @@ -239,12 +239,12 @@ public function setAssetManager($value)
*/
public function clear()
{
$this->metaTags = null;
$this->linkTags = null;
$this->css = null;
$this->cssFiles = null;
$this->js = null;
$this->jsFiles = null;
$this->metaTags = [];
$this->linkTags = [];
$this->css = [];
$this->cssFiles = [];
$this->js = [];
$this->jsFiles = [];
$this->assetBundles = [];
}

Expand Down