From 684f9cdb9648406cca12bac74a948d6cd4957137 Mon Sep 17 00:00:00 2001
From: Michael <heluecht@pirati.ca>
Date: Sat, 22 May 2021 20:31:50 +0000
Subject: [PATCH] Coding standards

---
 src/Util/HTTPInputData.php | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/Util/HTTPInputData.php b/src/Util/HTTPInputData.php
index 9461aa20f..526458acf 100644
--- a/src/Util/HTTPInputData.php
+++ b/src/Util/HTTPInputData.php
@@ -159,9 +159,9 @@ class HTTPInputData
 		if ($fileHandle === false) {
 			$error = UPLOAD_ERR_CANT_WRITE;
 		} else {
-			$lastLine = NULL;
+			$lastLine = null;
 			while (($chunk = fgets($stream, 8096)) !== false && strpos($chunk, $boundary) !== 0) {
-				if ($lastLine !== NULL) {
+				if ($lastLine !== null) {
 					if (fwrite($fileHandle, $lastLine) === false) {
 						$error = UPLOAD_ERR_CANT_WRITE;
 						break;
@@ -170,7 +170,7 @@ class HTTPInputData
 				$lastLine = $chunk;
 			}
 
-			if ($lastLine !== NULL && $error !== UPLOAD_ERR_CANT_WRITE) {
+			if ($lastLine !== null && $error !== UPLOAD_ERR_CANT_WRITE) {
 				if (fwrite($fileHandle, rtrim($lastLine, "\r\n")) === false) {
 					$error = UPLOAD_ERR_CANT_WRITE;
 				}
@@ -189,17 +189,17 @@ class HTTPInputData
 	private static function fetchVariables($stream, string $boundary, string $name, array $variables)
 	{
 		$fullValue = '';
-		$lastLine = NULL;
+		$lastLine  = null;
 
 		while (($chunk = fgets($stream)) !== false && strpos($chunk, $boundary) !== 0) {
-			if ($lastLine !== NULL) {
+			if ($lastLine !== null) {
 				$fullValue .= $lastLine;
 			}
 
 			$lastLine = $chunk;
 		}
 
-		if ($lastLine !== NULL) {
+		if ($lastLine !== null) {
 			$fullValue .= rtrim($lastLine, "\r\n");
 		}