From 37fad0c03bb53f6a03852e52b144c9f8169fdf44 Mon Sep 17 00:00:00 2001 From: jagepard Date: Tue, 11 Aug 2020 07:32:41 -0700 Subject: [PATCH] Update --- phpunit.xml | 5 +---- src/Singleton.php | 5 ++++- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/phpunit.xml b/phpunit.xml index 44a9d2c..0d74d2d 100755 --- a/phpunit.xml +++ b/phpunit.xml @@ -12,14 +12,11 @@ - + - - ./vendor - ./src diff --git a/src/Singleton.php b/src/Singleton.php index b968bf5..ce59866 100755 --- a/src/Singleton.php +++ b/src/Singleton.php @@ -9,7 +9,10 @@ final class Singleton { - private static self $instance; + /** + * @var Singleton + */ + private static $instance; public static function getInstance(): self {