@@ -46,25 +46,25 @@ class PHPRestSQL {
4646     * The HTTP request data sent (if any). 
4747     * @var str 
4848     */ 
49-     var $ requestDataNULL ;
49+     var $ requestDatanull ;
5050
5151	/** 
5252	 * The URL extension stripped off of the request URL 
5353	 * @var str 
5454	 */ 
55- 	var $ extensionNULL ;
55+ 	var $ extensionnull ;
5656
5757    /** 
5858     * The database table to query. 
5959     * @var str 
6060     */ 
61-     var $ tableNULL ;
61+     var $ tablenull ;
6262
6363    /** 
6464     * The primary key of the database row to query. 
6565     * @var str[] 
6666     */ 
67-     var $ uidNULL ;
67+     var $ uidnull ;
6868
6969    /** 
7070     * Array of strings to convert into the HTTP response. 
@@ -75,15 +75,15 @@ class PHPRestSQL {
7575    /** 
7676     * Type of display, database, table or row. 
7777     */ 
78-     var $ displayNULL ;
78+     var $ displaynull ;
7979
8080    /** 
8181     * Constructor. Parses the configuration file "phprestsql.ini", grabs any request data sent, records the HTTP 
8282     * request method used and parses the request URL to find out the requested table name and primary key values. 
8383     * @param str iniFile Configuration file to use 
8484     */ 
8585    function  PHPRestSQL ($ iniFile'phprestsql.ini ' ) {
86-         $ this config  = parse_ini_file ($ iniFileTRUE );
86+         $ this config  = parse_ini_file ($ iniFiletrue );
8787
8888        if  (isset ($ _SERVER 'REQUEST_URI ' ]) && isset ($ _SERVER 'REQUEST_METHOD ' ])) {
8989
@@ -101,7 +101,7 @@ function PHPRestSQL($iniFile = 'phprestsql.ini') {
101101
102102			$ lastPartarray_pop ($ urlParts
103103			$ dotPositionstrpos ($ lastPart'. ' );
104- 			if  ($ dotPositionFALSE ) {
104+ 			if  ($ dotPositionfalse ) {
105105				$ this extension  = substr ($ lastPart$ dotPosition1 );
106106				$ lastPartsubstr ($ lastPart0 , $ dotPosition
107107			}
@@ -519,7 +519,7 @@ function generateResponseData() {
519519    /** 
520520     * Send a HTTP 201 response header. 
521521     */ 
522-     function  created ($ urlFALSE ) {
522+     function  created ($ urlfalse ) {
523523        header ('HTTP/1.0 201 Created ' );
524524        if  ($ url
525525            header ('Location:  ' .$ url
0 commit comments