diff --git a/src/App/Users/Restrictions/Engines/DefaultRestrictionsEngine.php b/src/App/Users/Restrictions/Engines/DefaultRestrictionsEngine.php index 22f34cf0..e29e903a 100644 --- a/src/App/Users/Restrictions/Engines/DefaultRestrictionsEngine.php +++ b/src/App/Users/Restrictions/Engines/DefaultRestrictionsEngine.php @@ -50,6 +50,6 @@ class DefaultRestrictionsEngine implements RestrictionsEngine public function getRestrictionReason(User $user): string|null { - // TODO: Implement getRestrictionReason() method. + return null; } } diff --git a/src/App/Users/Restrictions/Engines/FixedBillingRestrictionsEngine.php b/src/App/Users/Restrictions/Engines/FixedBillingRestrictionsEngine.php index 1f1549af..feb65aa2 100644 --- a/src/App/Users/Restrictions/Engines/FixedBillingRestrictionsEngine.php +++ b/src/App/Users/Restrictions/Engines/FixedBillingRestrictionsEngine.php @@ -46,6 +46,6 @@ class FixedBillingRestrictionsEngine implements RestrictionsEngine public function getRestrictionReason(User $user): string|null { - // TODO: Implement getRestrictionReason() method. + return null; } }