Skip to content

Commit

Permalink
Linting: learning_path_courses
Browse files Browse the repository at this point in the history
  • Loading branch information
WunderJacob committed Nov 23, 2023
1 parent 1b7259b commit 1bf1ca4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions classes/learning_path_courses.php
Original file line number Diff line number Diff line change
Expand Up @@ -135,10 +135,10 @@ protected static function get_categories($categories) {
}
/**
* Build sql query with config filters.
* @param array $configfilter
* @param array $configfilters
* @return array
*/
protected static function build_where_query($configfilters) { $wherequeries = [];
protected static function build_where_query($configfilters) {
$params = [];
$wherequery = '';
foreach ($configfilters as $index => $configfilter) {
Expand Down Expand Up @@ -172,7 +172,7 @@ protected static function build_where_query($configfilters) { $wherequeri
}
return [
'wherequery' => $wherequery,
'params' => $params
'params' => $params,
];

}
Expand Down

0 comments on commit 1bf1ca4

Please sign in to comment.