Skip to content

Commit

Permalink
Line ending fixes / constructor clean-ups
Browse files Browse the repository at this point in the history
  • Loading branch information
semsol / Benjamin Nowack committed Nov 22, 2010
1 parent c8b2e45 commit 270696b
Show file tree
Hide file tree
Showing 14 changed files with 29 additions and 29 deletions.
4 changes: 2 additions & 2 deletions store/ARC2_StoreAskQueryHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
* @license <http://arc.semsol.org/license>
* @homepage <http://arc.semsol.org/>
* @package ARC2
* @version 2009-12-15
* @version 2010-11-16
*/

ARC2::inc('StoreSelectQueryHandler');

class ARC2_StoreAskQueryHandler extends ARC2_StoreSelectQueryHandler {

function __construct($a = '', &$caller) {/* caller has to be a store */
function __construct($a, &$caller) {/* caller has to be a store */
parent::__construct($a, $caller);
}

Expand Down
4 changes: 2 additions & 2 deletions store/ARC2_StoreAtomLoader.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
class: ARC2 Store Atom(2) Loader
author: Benjamin Nowack
version: 2008-09-26
version: 2010-11-16
*/

ARC2::inc('AtomParser');

class ARC2_StoreAtomLoader extends ARC2_AtomParser {

function __construct($a = '', &$caller) {
function __construct($a, &$caller) {
parent::__construct($a, $caller);
}

Expand Down
4 changes: 2 additions & 2 deletions store/ARC2_StoreCBJSONLoader.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
* @license http://arc.semsol.org/license
* @homepage <http://arc.semsol.org/>
* @package ARC2
* @version 2010-06-07
* @version 2010-11-16
*/

ARC2::inc('CBJSONParser');

class ARC2_StoreCBJSONLoader extends ARC2_CBJSONParser {

function __construct($a = '', &$caller) {
function __construct($a, &$caller) {
parent::__construct($a, $caller);
}

Expand Down
4 changes: 2 additions & 2 deletions store/ARC2_StoreConstructQueryHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
class: ARC2 RDF Store CONSTRUCT Query Handler
author: Benjamin Nowack
version: 2008-02-11 (Fix: auto-adding DISTINCT to avoid unnecessary duplicates)
version: 2010-11-16
*/

ARC2::inc('StoreSelectQueryHandler');

class ARC2_StoreConstructQueryHandler extends ARC2_StoreSelectQueryHandler {

function __construct($a = '', &$caller) {/* caller has to be a store */
function __construct($a, &$caller) {/* caller has to be a store */
parent::__construct($a, $caller);
}

Expand Down
4 changes: 2 additions & 2 deletions store/ARC2_StoreDeleteQueryHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
* @license http://arc.semsol.org/license
* @homepage <http://arc.semsol.org/>
* @package ARC2
* @version 2010-06-24
* @version 2010-11-16
*/

ARC2::inc('StoreQueryHandler');

class ARC2_StoreDeleteQueryHandler extends ARC2_StoreQueryHandler {

function __construct($a = '', &$caller) {/* caller has to be a store */
function __construct($a, &$caller) {/* caller has to be a store */
parent::__construct($a, $caller);
}

Expand Down
4 changes: 2 additions & 2 deletions store/ARC2_StoreDescribeQueryHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
class: ARC2 Store DESCRIBE Query Handler
author: Benjamin Nowack
version: 2008-01-09 (Tweak: label auto-detection is now optional)
version: 2010-11-16
*/

ARC2::inc('StoreSelectQueryHandler');

class ARC2_StoreDescribeQueryHandler extends ARC2_StoreSelectQueryHandler {

function __construct($a = '', &$caller) {/* caller has to be a store */
function __construct($a, &$caller) {/* caller has to be a store */
parent::__construct($a, $caller);
}

Expand Down
4 changes: 2 additions & 2 deletions store/ARC2_StoreEndpoint.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
* @license <http://arc.semsol.org/license>
* @homepage <http://arc.semsol.org/>
* @package ARC2
* @version 2010-06-04
* @version 2010-11-16
*/

ARC2::inc('Store');

class ARC2_StoreEndpoint extends ARC2_Store {

function __construct($a = '', &$caller) {
function __construct($a, &$caller) {
parent::__construct($a, $caller);
}

Expand Down
4 changes: 2 additions & 2 deletions store/ARC2_StoreHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
class: ARC2 RDF Store Helper
author: Benjamin Nowack
version: 2008-04-03 (Tweak: Changed locking approach from "LOCK TABLE" to "GET LOCK")
version: 2010-11-16
*/

ARC2::inc('Class');

class ARC2_StoreHelper extends ARC2_Class {

function __construct($a = '', &$caller) {
function __construct($a, &$caller) {
parent::__construct($a, $caller);
}

Expand Down
4 changes: 2 additions & 2 deletions store/ARC2_StoreLoadQueryHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
* @license <http://arc.semsol.org/license>
* @homepage <http://arc.semsol.org/>
* @package ARC2
* @version 2010-06-24
* @version 2010-11-16
*/

ARC2::inc('StoreQueryHandler');

class ARC2_StoreLoadQueryHandler extends ARC2_StoreQueryHandler {

function __construct($a = '', &$caller) {/* caller has to be a store */
function __construct($a, &$caller) {/* caller has to be a store */
parent::__construct($a, $caller);
}

Expand Down
4 changes: 2 additions & 2 deletions store/ARC2_StoreQueryHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
* @license <http://arc.semsol.org/license>
* @homepage <http://arc.semsol.org/>
* @package ARC2
* @version 2010-04-11
* @version 2010-11-16
*/

ARC2::inc('Class');

class ARC2_StoreQueryHandler extends ARC2_Class {

function __construct($a = '', &$caller) {
function __construct($a, &$caller) {
parent::__construct($a, $caller);
}

Expand Down
4 changes: 2 additions & 2 deletions store/ARC2_StoreRDFXMLLoader.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
class: ARC2 Store RDF/XML Loader
author: Benjamin Nowack
version: 2007-08-21
version: 2010-11-16
*/

ARC2::inc('RDFXMLParser');

class ARC2_StoreRDFXMLLoader extends ARC2_RDFXMLParser {

function __construct($a = '', &$caller) {
function __construct($a, &$caller) {
parent::__construct($a, $caller);
}

Expand Down
4 changes: 2 additions & 2 deletions store/ARC2_StoreSPOGLoader.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
class: ARC2 Store SPOG Loader
author: Morten H�ybye Frederiksen / Benjamin Nowack
version: 2008-07-02
version: 2010-11-16
*/

ARC2::inc('SPOGParser');

class ARC2_StoreSPOGLoader extends ARC2_SPOGParser {

function __construct($a = '', &$caller) {
function __construct($a, &$caller) {
parent::__construct($a, $caller);
}

Expand Down
6 changes: 3 additions & 3 deletions store/ARC2_StoreSelectQueryHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
* @license http://arc.semsol.org/license
* @homepage <http://arc.semsol.org/>
* @package ARC2
* @version 2010-06-22
* @version 2010-11-16
*
*/

ARC2::inc('StoreQueryHandler');

class ARC2_StoreSelectQueryHandler extends ARC2_StoreQueryHandler {

function __construct($a = '', &$caller) {/* caller has to be a store */
function __construct($a, &$caller) {/* caller has to be a store */
parent::__construct($a, $caller);
}

Expand Down Expand Up @@ -1097,7 +1097,7 @@ function hasUnconnectedFilterVars($filter_pattern_id) {
}
return $r;
}

/**
* Returns the given filter pattern's scope (the id of the parent group pattern).
*/
Expand Down
4 changes: 2 additions & 2 deletions store/ARC2_StoreTurtleLoader.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
class: ARC2 Store Turtle Loader
author: Benjamin Nowack
version: 2008-06-28 (Tweak: adjusted to normalized "literal" type)
version: 2010-11-16
*/

ARC2::inc('TurtleParser');

class ARC2_StoreTurtleLoader extends ARC2_TurtleParser {

function __construct($a = '', &$caller) {
function __construct($a, &$caller) {
parent::__construct($a, $caller);
}

Expand Down

0 comments on commit 270696b

Please sign in to comment.