Skip to content

Commit

Permalink
fixed issue 41: slight difference in naming convention breaks some au…
Browse files Browse the repository at this point in the history
…toloaders
  • Loading branch information
Gabor de Mooij, Buurtnerd committed Jan 24, 2011
1 parent 2137166 commit 83f0bca
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion RedBean/QueryWriter/AQueryWriter.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* with this source code in the file license.txt.
*/

abstract class RedBean_AQueryWriter {
abstract class RedBean_QueryWriter_AQueryWriter {


/**
Expand Down
2 changes: 1 addition & 1 deletion RedBean/QueryWriter/MySQL.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* This source file is subject to the BSD/GPLv2 License that is bundled
* with this source code in the file license.txt.
*/
class RedBean_QueryWriter_MySQL extends RedBean_AQueryWriter implements RedBean_QueryWriter {
class RedBean_QueryWriter_MySQL extends RedBean_QueryWriter_AQueryWriter implements RedBean_QueryWriter {

/**
* Here we describe the datatypes that RedBean
Expand Down
2 changes: 1 addition & 1 deletion RedBean/QueryWriter/NullWriter.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* This source file is subject to the BSD/GPLv2 License that is bundled
* with this source code in the file license.txt.
*/
class RedBean_QueryWriter_NullWriter extends RedBean_AQueryWriter implements RedBean_QueryWriter {
class RedBean_QueryWriter_NullWriter extends RedBean_QueryWriter_AQueryWriter implements RedBean_QueryWriter {


/**
Expand Down
2 changes: 1 addition & 1 deletion RedBean/QueryWriter/PostgreSQL.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* This source file is subject to the BSD/GPLv2 License that is bundled
* with this source code in the file license.txt.
*/
class RedBean_QueryWriter_PostgreSQL extends RedBean_AQueryWriter implements RedBean_QueryWriter {
class RedBean_QueryWriter_PostgreSQL extends RedBean_QueryWriter_AQueryWriter implements RedBean_QueryWriter {

/**
* DATA TYPE
Expand Down
2 changes: 1 addition & 1 deletion RedBean/QueryWriter/SQLite.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* @author Gabor de Mooij
* @license BSD
*/
class RedBean_QueryWriter_SQLite extends RedBean_AQueryWriter implements RedBean_QueryWriter {
class RedBean_QueryWriter_SQLite extends RedBean_QueryWriter_AQueryWriter implements RedBean_QueryWriter {


/**
Expand Down

0 comments on commit 83f0bca

Please sign in to comment.