1
0
mirror of https://github.com/danog/amp.git synced 2024-12-11 08:59:46 +01:00

Fix missing return inside Loop::info()

This commit is contained in:
Bob Weinand 2016-05-23 18:56:38 +02:00 committed by Niklas Keller
parent 706bdfa632
commit ac116c93b8

View File

@ -297,7 +297,7 @@ final class Loop
*/
public function info()
{
self::get()->info();
return self::get()->info();
}
/**