standaloneusers: remove property type declarations to make php7.3 compatible dev...
authorRich Lott / Artful Robot <code.commits@artfulrobot.uk>
Thu, 2 Nov 2023 11:24:36 +0000 (11:24 +0000)
committerRich Lott / Artful Robot <code.commits@artfulrobot.uk>
Thu, 2 Nov 2023 11:24:36 +0000 (11:24 +0000)
ext/standaloneusers/Civi/Api4/Action/User/PasswordReset.php
ext/standaloneusers/Civi/Api4/Action/User/SendPasswordReset.php

index e02928d0e1d7b4fdfccf4ce5ba1e8a30a2c371b5..6e71dd1cde22fe263c546f90219915cfd984a52c 100644 (file)
@@ -20,7 +20,7 @@ class PasswordReset extends AbstractAction {
    * @var string
    * @required
    */
-  protected string $token;
+  protected $token;
 
   /**
    * New password.
@@ -28,7 +28,7 @@ class PasswordReset extends AbstractAction {
    * @var string
    * @required
    */
-  protected string $password;
+  protected $password;
 
   public function _run(Result $result) {
 
index 101d21067587f620a32c65024ed35d7bf0434348..6205d79078c0abad418d04c3908f88eb5df6e470 100644 (file)
@@ -30,7 +30,7 @@ class SendPasswordReset extends AbstractAction {
    * @var string
    * @default ''
    */
-  protected string $identifier;
+  protected $identifier;
 
   public function _run(Result $result) {
     $endNoSoonerThan = 0.25 + microtime(TRUE);