Skip to content
This repository was archived by the owner on Jun 10, 2022. It is now read-only.

Commit 2b38ba6

Browse files
committed
fixed
1 parent 6db1830 commit 2b38ba6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/SingletonTrait.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ trait SingletonTrait
1515
*/
1616
protected static $instance;
1717

18-
// Need to be compatible php 7.1.x, so this scene cannot be specified return type `object`
18+
/**
19+
* Need to be compatible php 7.1.x, so this scene cannot be specified return type `object`
20+
*/
1921
public static function getInstance()
2022
{
2123
if (self::$instance === null) {

0 commit comments

Comments
 (0)