The return type could not be reliably inferred; please add a @return annotation.
Our type inference engine in quite powerful, but sometimes the code does not
provide enough clues to go by. In these cases we request you to add a @return
annotation as described here.
Loading history...
15
{
16
12
return $this->customVariables;
17
}
18
19
/**
20
* Append custom variables that'll be made available as template variables in PageViews.
21
*
22
* @param array $customVariables
23
*
24
* @since 0.2.0
25
*/
26
public function appendCustomVariables(array $customVariables)
Our type inference engine in quite powerful, but sometimes the code does not provide enough clues to go by. In these cases we request you to add a
@return
annotation as described here.