From 5556d752a672d77d23c8bdfac836b2637f50fe2f Mon Sep 17 00:00:00 2001 From: Cameron Eagans Date: Wed, 1 Feb 2023 16:11:26 -0700 Subject: [PATCH] Change a file --- src/TestClass.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/TestClass.php b/src/TestClass.php index 8edd31c..3c7195e 100644 --- a/src/TestClass.php +++ b/src/TestClass.php @@ -10,4 +10,9 @@ public function __construct($someparam) { $this->someparam = $someparam; } + + public function another_method() + { + $this->someparam = null; + } }