From b3dd6fae7a034b2593772c79f9521cee268f8799 Mon Sep 17 00:00:00 2001 From: BernhardBaumrock Date: Tue, 8 Mar 2022 14:25:40 -0500 Subject: [PATCH] Add PR #218 - add typehints to site/ready, init and finished --- site-blank/finished.php | 2 ++ site-blank/init.php | 2 ++ site-blank/ready.php | 2 ++ 3 files changed, 6 insertions(+) diff --git a/site-blank/finished.php b/site-blank/finished.php index c618feb1..aa621018 100644 --- a/site-blank/finished.php +++ b/site-blank/finished.php @@ -2,6 +2,8 @@ if(!defined("PROCESSWIRE")) die(); +/** @var Wire $wire */ + /** * ProcessWire Request Finished * ============================ diff --git a/site-blank/init.php b/site-blank/init.php index eb4fd600..f85c0dd4 100644 --- a/site-blank/init.php +++ b/site-blank/init.php @@ -2,6 +2,8 @@ if(!defined("PROCESSWIRE")) die(); +/** @var Wire $wire */ + /** * ProcessWire Bootstrap Initialization * ==================================== diff --git a/site-blank/ready.php b/site-blank/ready.php index 5b9beb89..af71386e 100644 --- a/site-blank/ready.php +++ b/site-blank/ready.php @@ -2,6 +2,8 @@ if(!defined("PROCESSWIRE")) die(); +/** @var Wire $wire */ + /** * ProcessWire Bootstrap API Ready * ===============================