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

Fix PHPDoc in HtmlDocument #41532

Merged
merged 3 commits into from Mar 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
16 changes: 8 additions & 8 deletions libraries/src/Document/HtmlDocument.php
Expand Up @@ -56,39 +56,39 @@ class HtmlDocument extends Document implements CacheControllerFactoryAwareInterf
* @var string
* @since 1.7.0
*/
public $template = null;
public $template;

/**
* Base url
*
* @var string
* @since 1.7.0
*/
public $baseurl = null;
public $baseurl;

/**
* Array of template parameters
* Registry of template parameters
*
* @var array
* @var Registry
* @since 1.7.0
*/
public $params = null;
public $params;

/**
* File name
*
* @var array
* @since 1.7.0
*/
public $_file = null;
public $_file;

/**
* Script nonce (string if set, null otherwise)
*
* @var string|null
* @since 4.0.0
*/
public $cspNonce = null;
public $cspNonce;

/**
* String holding parsed template
Expand All @@ -112,7 +112,7 @@ class HtmlDocument extends Document implements CacheControllerFactoryAwareInterf
* @var integer
* @since 1.7.0
*/
protected $_caching = null;
protected $_caching;

/**
* Set to true when the document should be output as HTML5
Expand Down