Modernize private property declarations in src/scheduler

This commit is contained in:
Dylan K. Taylor
2022-05-17 21:53:38 +01:00
parent 9e59819f06
commit 9de88aa734
8 changed files with 37 additions and 88 deletions

View File

@@ -54,7 +54,7 @@ abstract class AsyncTask extends \Threaded{
*
* Used to store objects which are only needed on one thread and should not be serialized.
*/
private static $threadLocalStorage = null;
private static ?\ArrayObject $threadLocalStorage = null;
/** @var AsyncWorker|null $worker */
public $worker = null;