methods first letter should be lower case

This commit is contained in:
Guillermo Dev
2018-10-11 12:24:33 +02:00
parent f04240f20d
commit ca2b84ee58

View File

@@ -9,7 +9,7 @@ class DbHelper
* @param boolean $withJeunesse add 'Jeunesse' to the list * @param boolean $withJeunesse add 'Jeunesse' to the list
* @return array * @return array
*/ */
public static function ListOfGenres($withJeunesse = false) public static function listOfGenres($withJeunesse = false)
{ {
$sql = "SELECT DISTINCT $sql = "SELECT DISTINCT
LTRIM(RTRIM(Codes.Code)) as code, LTRIM(RTRIM(Codes.Code)) as code,
@@ -38,7 +38,7 @@ class DbHelper
/** /**
* Retrieve the list of all books currently lent to readers. * Retrieve the list of all books currently lent to readers.
*/ */
public static function InReading() public static function inReading()
{ {
$sql = "SELECT $sql = "SELECT
NoticeNr, title, author, displayName NoticeNr, title, author, displayName