Skip to content

Commit

Permalink
Merge pull request #12588 from cakephp/master-docblocks
Browse files Browse the repository at this point in the history
Fix doc blocks.
  • Loading branch information
markstory committed Sep 26, 2018
2 parents 6fd470c + cb077bd commit b9862ed
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/View/ViewBuilder.php
Expand Up @@ -34,14 +34,14 @@ class ViewBuilder implements JsonSerializable, Serializable
/**
* The subdirectory to the template.
*
* @var string
* @var string|null
*/
protected $_templatePath;

/**
* The template file to render.
*
* @var string
* @var string|null
*/
protected $_template;

Expand All @@ -62,28 +62,28 @@ class ViewBuilder implements JsonSerializable, Serializable
/**
* The layout name to render.
*
* @var string
* @var string|null|false
*/
protected $_layout;

/**
* Whether or not autoLayout should be enabled.
*
* @var bool
* @var bool|null
*/
protected $_autoLayout;

/**
* The layout path to build the view with.
*
* @var string
* @var string|null
*/
protected $_layoutPath;

/**
* The view variables to use
*
* @var string
* @var string|null
*/
protected $_name;

Expand All @@ -92,7 +92,7 @@ class ViewBuilder implements JsonSerializable, Serializable
* Can either use plugin notation, a short name
* or a fully namespaced classname.
*
* @var string
* @var string|null
*/
protected $_className;

Expand Down Expand Up @@ -212,7 +212,7 @@ public function enableAutoLayout($enable = true)
* Returns if CakePHP's conventional mode of applying layout files is enabled.
* Disabled means that layouts will not be automatically applied to rendered views.
*
* @return bool
* @return bool|null
*/
public function isAutoLayoutEnabled()
{
Expand Down Expand Up @@ -566,7 +566,7 @@ public function setClassName($name)
/**
* Gets the view classname.
*
* @return string
* @return string|null
*/
public function getClassName()
{
Expand Down

0 comments on commit b9862ed

Please sign in to comment.