1
0
mirror of https://github.com/DesignPatternsPHP/DesignPatternsPHP.git synced 2025-05-24 07:19:44 +02:00
This commit is contained in:
AS 2014-05-10 15:39:28 +08:00
parent 7e887358ba
commit 17bb7b76d4

@ -18,6 +18,6 @@ class Picture extends BasePicture
*/
public function render()
{
return sprintf('<img src="%s" title="$s"/>', $this->path, $this->name);
return sprintf('<img src="%s" title="%s"/>', $this->path, $this->name);
}
}