diff options
author | tailor <cygnus@janrain.com> | 2006-01-05 00:11:49 +0000 |
---|---|---|
committer | tailor <cygnus@janrain.com> | 2006-01-05 00:11:49 +0000 |
commit | d12acc96950dffaec52adcef141d0f875f141d38 (patch) | |
tree | 4bbded0d9fd3881263c491fbd4e4ea7ba8d16ec3 | |
parent | 421edc6982a39f086e2eb3efd15c13a17e0cf8fc (diff) | |
download | php-openid-d12acc96950dffaec52adcef141d0f875f141d38.zip php-openid-d12acc96950dffaec52adcef141d0f875f141d38.tar.gz php-openid-d12acc96950dffaec52adcef141d0f875f141d38.tar.bz2 |
[project @ Fixed brace style]
-rw-r--r-- | Net/OpenID/KVForm.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Net/OpenID/KVForm.php b/Net/OpenID/KVForm.php index d2c9f96..ebc41e7 100644 --- a/Net/OpenID/KVForm.php +++ b/Net/OpenID/KVForm.php @@ -19,7 +19,8 @@ * @package OpenID */ class Net_OpenID_KVForm { - function arrayToKV($values) { + function arrayToKV($values) + { if ($values === null) { return null; } @@ -52,7 +53,8 @@ class Net_OpenID_KVForm { return $serialized; } - function kvToArray($kvs) { + function kvToArray($kvs) + { $lines = explode("\n", $kvs); $last = array_pop($lines); |