From 2ac4bdca2ab38990f891371282a3a17af290e78f Mon Sep 17 00:00:00 2001
From: Thomas Lange <code@nerdmind.de>
Date: Sun, 1 Dec 2024 18:09:09 +0100
Subject: PHP Keywords and types should be in lowercase

Follow PSR-12 and use lowercase variants of PHP reserved keywords.
See: https://www.php-fig.org/psr/psr-12/#25-keywords-and-types

Find all uppercase occurrences of "or", "and", "null", "true" and
"false" and change them to the lowercase variant.
---
 core/namespace/ORM/Entity.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'core/namespace/ORM/Entity.php')

diff --git a/core/namespace/ORM/Entity.php b/core/namespace/ORM/Entity.php
index 61b9371..5462b54 100644
--- a/core/namespace/ORM/Entity.php
+++ b/core/namespace/ORM/Entity.php
@@ -13,7 +13,7 @@ abstract class Entity implements EntityInterface {
 	# Get attribute
 	#===============================================================================
 	public function get(string $attribute) {
-		return $this->{$attribute} ?? NULL;
+		return $this->{$attribute} ?? null;
 	}
 
 	#===============================================================================
-- 
cgit v1.2.3