summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authortailor <cygnus@janrain.com>2006-01-24 18:37:29 +0000
committertailor <cygnus@janrain.com>2006-01-24 18:37:29 +0000
commitbc14e9b0c1443ad09a44c6b27812ae9c116d78f9 (patch)
tree2dbca940bc43c4530e4169db05412f24309e2730 /examples
parent3a632f7a82615e6d6c6a43f54d2f5fab43ddeaa2 (diff)
downloadphp-openid-bc14e9b0c1443ad09a44c6b27812ae9c116d78f9.zip
php-openid-bc14e9b0c1443ad09a44c6b27812ae9c116d78f9.tar.gz
php-openid-bc14e9b0c1443ad09a44c6b27812ae9c116d78f9.tar.bz2
[project @ Changed require_once() to require_once per PEAR proposal comment.]
Diffstat (limited to 'examples')
-rw-r--r--examples/consumer.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/examples/consumer.php b/examples/consumer.php
index 88194a2..4a69b37 100644
--- a/examples/consumer.php
+++ b/examples/consumer.php
@@ -9,8 +9,8 @@
* Require files to use the OpenID consumer. We need the consumer
* itself, an OpenID store implementation, and some utility functions.
*/
-require_once("Auth/OpenID/Consumer/Consumer.php");
-require_once("Auth/OpenID/OIDUtil.php");
+require_once "Auth/OpenID/Consumer/Consumer.php";
+require_once "Auth/OpenID/OIDUtil.php";
/**
* Create the OpenID store and consumer objects, which we'll use to
@@ -27,7 +27,7 @@ $store_type = 'file';
if ($store_type == 'sqlite') {
- require_once("Auth/OpenID/Store/SQLStore.php");
+ require_once "Auth/OpenID/Store/SQLStore.php";
/**
* This is where the example will store its OpenID information.
@@ -64,7 +64,7 @@ if ($store_type == 'sqlite') {
} else if ($store_type == 'mysql') {
- require_once("Auth/OpenID/Store/SQLStore.php");
+ require_once "Auth/OpenID/Store/SQLStore.php";
/**
* Assume that the database used by the MySQL store has already
@@ -98,7 +98,7 @@ if ($store_type == 'sqlite') {
} else if ($store_type == 'pgsql') {
- require_once("Auth/OpenID/Store/SQLStore.php");
+ require_once "Auth/OpenID/Store/SQLStore.php";
/**
* Assume that the database used by the PostgreSQL store has
@@ -132,7 +132,7 @@ if ($store_type == 'sqlite') {
} else {
- require_once("Auth/OpenID/Store/FileStore.php");
+ require_once "Auth/OpenID/Store/FileStore.php";
/**
* This is where the example will store its OpenID information.