]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
[EXTLIB][VALIDATE] Fix some types
authorDiogo Cordeiro <diogo@fc.up.pt>
Wed, 7 Aug 2019 00:31:09 +0000 (01:31 +0100)
committerDiogo Cordeiro <diogo@fc.up.pt>
Thu, 8 Aug 2019 01:44:13 +0000 (02:44 +0100)
extlib/Validate.php

index e31d6db62ec53eb51ffae289b8176533809e9e24..c17ccebb4532752655ad7870315698a16c6690e8 100644 (file)
@@ -508,7 +508,7 @@ class Validate
      * Validate an email
      *
      * @param string $email email to validate
-     * @param mixed  boolean (BC) $check_domain Check or not if the domain exists
+     * @param mixed bool (BC) $check_domain Check or not if the domain exists
      *              array $options associative array of options
      *              'check_domain' boolean Check or not if the domain exists
      *              'use_rfc822' boolean Apply the full RFC822 grammar
@@ -528,7 +528,7 @@ class Validate
      * @access public
      * @throws Exception
      */
-    public function email(string $email, array $options = null): bool
+    public function email(string $email, $options = null): bool
     {
         $check_domain = false;
         $use_rfc822 = false;
@@ -683,7 +683,7 @@ class Validate
      * @access public
      * @throws Exception
      */
-    public function uri(string $url, $options = null): bool
+    public function uri(string $url, ?array $options = null): bool
     {
         $strict = ';/?:@$,';
         $domain_check = false;