diff options
Diffstat (limited to 'REFLECTION')
| -rw-r--r-- | REFLECTION | 44 | 
1 files changed, 28 insertions, 16 deletions
@@ -1,4 +1,4 @@ -Extension [ <persistent> extension #102 uuid version 1.2.0 ] { +Extension [ <persistent> extension #102 uuid version 1.2.1 ] {    - Constants [14] {      Constant [ int UUID_VARIANT_NCS ] { 0 } @@ -21,77 +21,89 @@ Extension [ <persistent> extension #102 uuid version 1.2.0 ] {      Function [ <internal:uuid> function uuid_create ] {        - Parameters [1] { -        Parameter #0 [ <optional> $uuid_type ] +        Parameter #0 [ <optional> int $uuid_type = UUID_TYPE_DEFAULT ]        } +      - Return [ string ]      }      Function [ <internal:uuid> function uuid_is_valid ] {        - Parameters [1] { -        Parameter #0 [ <required> $uuid ] +        Parameter #0 [ <required> string $uuid ]        } +      - Return [ bool ]      }      Function [ <internal:uuid> function uuid_compare ] {        - Parameters [2] { -        Parameter #0 [ <required> $uuid1 ] -        Parameter #1 [ <required> $uuid2 ] +        Parameter #0 [ <required> string $uuid1 ] +        Parameter #1 [ <required> string $uuid2 ]        } +      - Return [ int ]      }      Function [ <internal:uuid> function uuid_is_null ] {        - Parameters [1] { -        Parameter #0 [ <required> $uuid ] +        Parameter #0 [ <required> string $uuid ]        } +      - Return [ bool ]      }      Function [ <internal:uuid> function uuid_generate_md5 ] {        - Parameters [2] { -        Parameter #0 [ <required> $uuid_ns ] -        Parameter #1 [ <required> $name ] +        Parameter #0 [ <required> string $uuid_ns ] +        Parameter #1 [ <required> string $name ]        } +      - Return [ string ]      }      Function [ <internal:uuid> function uuid_generate_sha1 ] {        - Parameters [2] { -        Parameter #0 [ <required> $uuid_ns ] -        Parameter #1 [ <required> $name ] +        Parameter #0 [ <required> string $uuid_ns ] +        Parameter #1 [ <required> string $name ]        } +      - Return [ string ]      }      Function [ <internal:uuid> function uuid_type ] {        - Parameters [1] { -        Parameter #0 [ <required> $uuid ] +        Parameter #0 [ <required> string $uuid ]        } +      - Return [ int ]      }      Function [ <internal:uuid> function uuid_variant ] {        - Parameters [1] { -        Parameter #0 [ <required> $uuid ] +        Parameter #0 [ <required> string $uuid ]        } +      - Return [ int ]      }      Function [ <internal:uuid> function uuid_time ] {        - Parameters [1] { -        Parameter #0 [ <required> $uuid ] +        Parameter #0 [ <required> string $uuid ]        } +      - Return [ int ]      }      Function [ <internal:uuid> function uuid_mac ] {        - Parameters [1] { -        Parameter #0 [ <required> $uuid ] +        Parameter #0 [ <required> string $uuid ]        } +      - Return [ string ]      }      Function [ <internal:uuid> function uuid_parse ] {        - Parameters [1] { -        Parameter #0 [ <required> $uuid ] +        Parameter #0 [ <required> string $uuid ]        } +      - Return [ string ]      }      Function [ <internal:uuid> function uuid_unparse ] {        - Parameters [1] { -        Parameter #0 [ <required> $uuid ] +        Parameter #0 [ <required> string $uuid ]        } +      - Return [ string ]      }    }  }  | 
