From: Mikael Nordfeldth Date: Sun, 1 Jun 2014 11:09:47 +0000 (+0200) Subject: Stronger typing in Widget class (HTMLOutputter) X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=2f97d5d206d00872b945309e13f5eaa8fe3ce252;p=quix0rs-gnu-social.git Stronger typing in Widget class (HTMLOutputter) --- diff --git a/lib/widget.php b/lib/widget.php index d068dea0f0..11f4d08cb8 100644 --- a/lib/widget.php +++ b/lib/widget.php @@ -63,7 +63,7 @@ class Widget * @param HTMLOutputter $out output helper, defaults to null */ - function __construct($out=null) + function __construct(HTMLOutputter $out=null) { $this->out = $out; }