The method ScormApi::saveItem() calls the typical debug function print_r() which is mostly only used during development. Open
error_log("item #$item_id not found in the items array: ".print_r($myLP->items, 1));
- Read upRead up
- Exclude checks
DevelopmentCodeFragment
Since: 2.3.0
Functions like vardump(), printr() etc. are normally only used during development and therefore such calls in production code are a good indicator that they were just forgotten.
Example
class SuspectCode {
public function doSomething(array $items)
{
foreach ($items as $i => $item) {
// …
if ('qafoo' == $item) var_dump($i);
// …
}
}
}
Source https://phpmd.org/rules/design.html#developmentcodefragment
The method saveItem has 20 parameters. Consider reducing the number of parameters to less than 10. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Exclude checks
The method switchItem() has an NPath complexity of 287232. The configured NPath complexity threshold is 200. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
NPathComplexity
Since: 0.1
The NPath complexity of a method is the number of acyclic execution paths through that method. A threshold of 200 is generally considered the point where measures should be taken to reduce complexity.
Example
class Foo {
function bar() {
// lots of complicated code
}
}
Source https://phpmd.org/rules/codesize.html#npathcomplexity
The method saveItem() has an NPath complexity of 9223372036854775807. The configured NPath complexity threshold is 200. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
NPathComplexity
Since: 0.1
The NPath complexity of a method is the number of acyclic execution paths through that method. A threshold of 200 is generally considered the point where measures should be taken to reduce complexity.
Example
class Foo {
function bar() {
// lots of complicated code
}
}
Source https://phpmd.org/rules/codesize.html#npathcomplexity
Missing class import via use statement (line '659', column '26'). Open
$mylpi = new learnpathItem($new_item_id);
- Read upRead up
- Exclude checks
MissingImport
Since: 2.7.0
Importing all external classes in a file through use statements makes them clearly visible.
Example
function make() {
return new \stdClass();
}
Source http://phpmd.org/rules/cleancode.html#MissingImport
The method saveItem uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them. Open
} else {
$myLPI->set_status('failed');
if ($debug) {
error_log('Set status: failed');
}
- Read upRead up
- Exclude checks
ElseExpression
Since: 1.4.0
An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.
Example
class Foo
{
public function bar($flag)
{
if ($flag) {
// one branch
} else {
// another branch
}
}
}
Source https://phpmd.org/rules/cleancode.html#elseexpression
The method saveItem uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them. Open
} else {
if ($debug > 1) {
error_log('Score not updated');
}
}
- Read upRead up
- Exclude checks
ElseExpression
Since: 1.4.0
An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.
Example
class Foo
{
public function bar($flag)
{
if ($flag) {
// one branch
} else {
// another branch
}
}
}
Source https://phpmd.org/rules/cleancode.html#elseexpression
The method saveItem uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them. Open
} else {
$myStatus = 'failed';
}
- Read upRead up
- Exclude checks
ElseExpression
Since: 1.4.0
An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.
Example
class Foo
{
public function bar($flag)
{
if ($flag) {
// one branch
} else {
// another branch
}
}
}
Source https://phpmd.org/rules/cleancode.html#elseexpression
The method saveItem uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them. Open
} else {
$myLPI->current_stop_time = time();
}
- Read upRead up
- Exclude checks
ElseExpression
Since: 1.4.0
An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.
Example
class Foo
{
public function bar($flag)
{
if ($flag) {
// one branch
} else {
// another branch
}
}
}
Source https://phpmd.org/rules/cleancode.html#elseexpression
The method saveItem uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them. Open
} else {
if ($debug > 1) {
error_log('Status not updated');
}
}
- Read upRead up
- Exclude checks
ElseExpression
Since: 1.4.0
An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.
Example
class Foo
{
public function bar($flag)
{
if ($flag) {
// one branch
} else {
// another branch
}
}
}
Source https://phpmd.org/rules/cleancode.html#elseexpression
The method saveItem uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them. Open
} else {
$myStatus = $myStatusInDB;
}
- Read upRead up
- Exclude checks
ElseExpression
Since: 1.4.0
An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.
Example
class Foo
{
public function bar($flag)
{
if ($flag) {
// one branch
} else {
// another branch
}
}
}
Source https://phpmd.org/rules/cleancode.html#elseexpression
The method saveItem uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them. Open
} else {
if ($debug > 1) {
error_log("Status not updated");
}
}
- Read upRead up
- Exclude checks
ElseExpression
Since: 1.4.0
An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.
Example
class Foo
{
public function bar($flag)
{
if ($flag) {
// one branch
} else {
// another branch
}
}
}
Source https://phpmd.org/rules/cleancode.html#elseexpression
The method saveItem uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them. Open
} else {
$myStatus = $myStatusInDB;
}
- Read upRead up
- Exclude checks
ElseExpression
Since: 1.4.0
An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.
Example
class Foo
{
public function bar($flag)
{
if ($flag) {
// one branch
} else {
// another branch
}
}
}
Source https://phpmd.org/rules/cleancode.html#elseexpression
The method saveItem uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them. Open
} else {
if ($debug > 1) {
error_log("Time is in SCORM format");
}
if ($debug > 1) {
- Read upRead up
- Exclude checks
ElseExpression
Since: 1.4.0
An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.
Example
class Foo
{
public function bar($flag)
{
if ($flag) {
// one branch
} else {
// another branch
}
}
}
Source https://phpmd.org/rules/cleancode.html#elseexpression
The method switchItem uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them. Open
} else {
if ($debug > 1) {
error_log('In switch_item_details - generating new item object', 0);
}
$mylpi = new learnpathItem($new_item_id);
- Read upRead up
- Exclude checks
ElseExpression
Since: 1.4.0
An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.
Example
class Foo
{
public function bar($flag)
{
if ($flag) {
// one branch
} else {
// another branch
}
}
}
Source https://phpmd.org/rules/cleancode.html#elseexpression
The method saveItem uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them. Open
} else {
if ($debug > 1) {
error_log('Prerequisites are OK');
}
- Read upRead up
- Exclude checks
ElseExpression
Since: 1.4.0
An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.
Example
class Foo
{
public function bar($flag)
{
if ($flag) {
// one branch
} else {
// another branch
}
}
}
Source https://phpmd.org/rules/cleancode.html#elseexpression
The method switchItem uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them. Open
} else {
$time_spent = $lpTime;
}
- Read upRead up
- Exclude checks
ElseExpression
Since: 1.4.0
An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.
Example
class Foo
{
public function bar($flag)
{
if ($flag) {
// one branch
} else {
// another branch
}
}
}
Source https://phpmd.org/rules/cleancode.html#elseexpression
Avoid unused local variables such as '$position'. Open
$position = $myLP->isFirstOrLastItem($item_id);
- Read upRead up
- Exclude checks
UnusedLocalVariable
Since: 0.2
Detects when a local variable is declared and/or assigned, but not used.
Example
class Foo {
public function doSomething()
{
$i = 5; // Unused
}
}
Source https://phpmd.org/rules/unusedcode.html#unusedlocalvariable
Avoid unused local variables such as '$interaction'. Open
foreach ($interactions as $index => $interaction) {
- Read upRead up
- Exclude checks
UnusedLocalVariable
Since: 0.2
Detects when a local variable is declared and/or assigned, but not used.
Example
class Foo {
public function doSomething()
{
$i = 5; // Unused
}
}
Source https://phpmd.org/rules/unusedcode.html#unusedlocalvariable
The parameter $next_item is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseParameterName
Since: 0.2
It is considered best practice to use the camelCase notation to name parameters.
Example
class ClassName {
public function doSomething($user_name) {
}
}
Source
The parameter $core_exit is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseParameterName
Since: 0.2
It is considered best practice to use the camelCase notation to name parameters.
Example
class ClassName {
public function doSomething($user_name) {
}
}
Source
The parameter $lp_id is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseParameterName
Since: 0.2
It is considered best practice to use the camelCase notation to name parameters.
Example
class ClassName {
public function doSomething($user_name) {
}
}
Source
The parameter $view_id is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseParameterName
Since: 0.2
It is considered best practice to use the camelCase notation to name parameters.
Example
class ClassName {
public function doSomething($user_name) {
}
}
Source
The parameter $user_id is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseParameterName
Since: 0.2
It is considered best practice to use the camelCase notation to name parameters.
Example
class ClassName {
public function doSomething($user_name) {
}
}
Source
The parameter $item_id is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseParameterName
Since: 0.2
It is considered best practice to use the camelCase notation to name parameters.
Example
class ClassName {
public function doSomething($user_name) {
}
}
Source
The parameter $current_item is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseParameterName
Since: 0.2
It is considered best practice to use the camelCase notation to name parameters.
Example
class ClassName {
public function doSomething($user_name) {
}
}
Source
The parameter $user_id is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseParameterName
Since: 0.2
It is considered best practice to use the camelCase notation to name parameters.
Example
class ClassName {
public function doSomething($user_name) {
}
}
Source
The parameter $view_id is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseParameterName
Since: 0.2
It is considered best practice to use the camelCase notation to name parameters.
Example
class ClassName {
public function doSomething($user_name) {
}
}
Source
Variable "item_id" is not in valid camel caps format Open
error_log("item_id: $item_id - lp_id: $lp_id - user_id: - $user_id - view_id: $view_id - item_id: $item_id");
- Exclude checks
Variable "item_id" is not in valid camel caps format Open
$return .= "checkCurrentItemPosition('$item_id'); \n";
- Exclude checks
Variable "current_item" is not in valid camel caps format Open
error_log('Params('.$lpId.','.$user_id.','.$view_id.','.$current_item.','.$next_item.')');
- Exclude checks
Variable "new_item_id" is not in valid camel caps format Open
$new_item_id = $mylp->get_current_item_id();
- Exclude checks
Variable "new_item_id" is not in valid camel caps format Open
$mylpi = $mylp->items[$new_item_id];
- Exclude checks
Variable "mymax_time_allowed" is not in valid camel caps format Open
$mymax_time_allowed = $mylpi->get_max_time_allowed();
- Exclude checks
Variable "view_id" is not in valid camel caps format Open
$myLPI->set_lp_view($view_id);
- Exclude checks
Variable "my_upd_id" is not in valid camel caps format Open
foreach ($update_list as $my_upd_id => $my_upd_status) {
- Exclude checks
Variable "i_id_last_connection" is not in valid camel caps format Open
WHERE login_id = $i_id_last_connection";
- Exclude checks
Missing parameter name Open
* @param int user ID
- Exclude checks
Missing parameter name Open
* @param int View ID
- Exclude checks
Variable "core_exit" is not in valid camel caps format Open
$core_exit = 'none',
- Exclude checks
Missing parameter name Open
* @param int Current item ID
- Exclude checks
Variable "user_id" is not in valid camel caps format Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
- Exclude checks
Variable "current_item" is not in valid camel caps format Open
error_log('In {next} - next item is '.$new_item_id.'(current: '.$current_item.')');
- Exclude checks
Variable "new_item_id" is not in valid camel caps format Open
$new_item_id = 0;
- Exclude checks
Variable "current_item" is not in valid camel caps format Open
$mylp->set_current_item($current_item);
- Exclude checks
Variable "current_item" is not in valid camel caps format Open
error_log('In {previous} - next item is '.$new_item_id.'(current: '.$current_item.')');
- Exclude checks
Variable "new_item_id" is not in valid camel caps format Open
$new_item_id = $mylp->get_current_item_id();
- Exclude checks
Variable "mytotal_time" is not in valid camel caps format Open
$mytotal_time = $mylpi->get_scorm_time('js');
- Exclude checks
Variable "current_item" is not in valid camel caps format Open
if ($next_item == $current_item) {
- Exclude checks
Variable "next_item" is not in valid camel caps format Open
$new_item_id = $next_item;
- Exclude checks
Variable "mylaunch_data" is not in valid camel caps format Open
$mylaunch_data = $mylpi->get_launch_data();
- Exclude checks
Variable "item_id" is not in valid camel caps format Open
$item_id,
- Exclude checks
Variable "my_upd_status" is not in valid camel caps format Open
$return .= "update_toc('".$my_upd_status."','".$my_upd_id."');";
- Exclude checks
Variable "my_upd_id" is not in valid camel caps format Open
$return .= "update_toc('".$my_upd_status."','".$my_upd_id."');";
- Exclude checks
Variable "current_time" is not in valid camel caps format Open
$current_time = api_get_utc_datetime();
- Exclude checks
Variable "tbl_track_login" is not in valid camel caps format Open
$sql = "UPDATE $tbl_track_login
- Exclude checks
Variable "current_item" is not in valid camel caps format Open
$mylp->items[$current_item]->restart();
- Exclude checks
Variable "item_id" is not in valid camel caps format Open
error_log("item #$item_id not found in the items array: ".print_r($myLP->items, 1));
- Exclude checks
Variable "lp_id" is not in valid camel caps format Open
'tool_id' => $lp_id,
- Exclude checks
Variable "real_time" is not in valid camel caps format Open
$myLPI->set_time($real_time, 'int');
- Exclude checks
Variable "user_id" is not in valid camel caps format Open
$mylp = learnpath::getLpFromSession(api_get_course_int_id(), $lpId, $user_id);
- Exclude checks
Variable "new_item_id" is not in valid camel caps format Open
$mylpi = new learnpathItem($new_item_id);
- Exclude checks
Missing class doc comment Open
class ScormApi
- Exclude checks
Variable "real_time" is not in valid camel caps format Open
error_log('Calling $real_time '.$real_time.' ');
- Exclude checks
Missing parameter name Open
* @param int New item ID
- Exclude checks
Variable "current_item" is not in valid camel caps format Open
$mylp->set_current_item($current_item);
- Exclude checks
Variable "new_item_id" is not in valid camel caps format Open
$mylp->set_current_item($new_item_id);
- Exclude checks
Variable "view_id" is not in valid camel caps format Open
$mylpi->set_lp_view($view_id);
- Exclude checks
Variable "mymastery_score" is not in valid camel caps format Open
$mymastery_score = $mylpi->get_mastery_score();
- Exclude checks
Variable "user_id" is not in valid camel caps format Open
error_log("item_id: $item_id - lp_id: $lp_id - user_id: - $user_id - view_id: $view_id - item_id: $item_id");
- Exclude checks
Variable "item_id" is not in valid camel caps format Open
if ($myLP->items && isset($myLP->items[$item_id])) {
- Exclude checks
Variable "item_id" is not in valid camel caps format Open
'tool_id_detail' => $item_id,
- Exclude checks
Variable "my_upd_status" is not in valid camel caps format Open
foreach ($update_list as $my_upd_id => $my_upd_status) {
- Exclude checks
Variable "current_time" is not in valid camel caps format Open
SET logout_date='".$current_time."'
- Exclude checks
Variable "user_id" is not in valid camel caps format Open
$user_id,
- Exclude checks
Variable "current_item" is not in valid camel caps format Open
error_log('In {first} - next item is '.$new_item_id.'(current: '.$current_item.')');
- Exclude checks
Variable "mysession_time" is not in valid camel caps format Open
$mysession_time = $mylpi->get_total_time();
- Exclude checks
Variable "mysuspend_data" is not in valid camel caps format Open
$mysuspend_data = $mylpi->get_suspend_data();
- Exclude checks
Variable "core_exit" is not in valid camel caps format Open
$myLPI->set_core_exit($core_exit);
- Exclude checks
Variable "item_id" is not in valid camel caps format Open
$myLP->save_item($item_id, false);
- Exclude checks
Variable "lp_id" is not in valid camel caps format Open
$lp_id,
- Exclude checks
Variable "item_id" is not in valid camel caps format Open
$position = $myLP->isFirstOrLastItem($item_id);
- Exclude checks
Variable "new_item_id" is not in valid camel caps format Open
$new_item_id = $mylp->get_current_item_id();
- Exclude checks
Variable "new_item_id" is not in valid camel caps format Open
error_log('In {previous} - next item is '.$new_item_id.'(current: '.$current_item.')');
- Exclude checks
Variable "new_item_id" is not in valid camel caps format Open
if (is_object($mylp->items[$new_item_id])) {
- Exclude checks
Variable "update_list" is not in valid camel caps format Open
foreach ($update_list as $my_upd_id => $my_upd_status) {
- Exclude checks
Variable "view_id" is not in valid camel caps format Open
$view_id,
- Exclude checks
Variable "item_id" is not in valid camel caps format Open
$item_id,
- Exclude checks
Variable "max_score" is not in valid camel caps format Open
$myLPI->max_score = $max;
- Exclude checks
Variable "clean_interaction" is not in valid camel caps format Open
$myLPI->add_interaction($index, $clean_interaction);
- Exclude checks
Variable "q_last_connection" is not in valid camel caps format Open
if (Database::num_rows($q_last_connection) > 0) {
- Exclude checks
Variable "next_item" is not in valid camel caps format Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
- Exclude checks
Variable "view_id" is not in valid camel caps format Open
error_log('Params('.$lpId.','.$user_id.','.$view_id.','.$current_item.','.$next_item.')');
- Exclude checks
Variable "current_item" is not in valid camel caps format Open
$mylp->set_current_item($current_item);
- Exclude checks
Variable "next_item" is not in valid camel caps format Open
if ($next_item == $current_item) {
- Exclude checks
Variable "new_item_id" is not in valid camel caps format Open
error_log('In {default} - next item is '.$new_item_id.'(current: '.$current_item.')');
- Exclude checks
Variable "core_exit" is not in valid camel caps format Open
error_log("TIME: $time - suspend: $suspend - location: $location - core_exit: $core_exit");
- Exclude checks
Variable "current_stop_time" is not in valid camel caps format Open
$myLPI->current_stop_time = time();
- Exclude checks
Variable "clean_interaction" is not in valid camel caps format Open
$clean_interaction = str_replace('@.|@', ',', $interactions[$index]);
- Exclude checks
Variable "item_id" is not in valid camel caps format Open
if ($my_upd_id != $item_id) {
- Exclude checks
Variable "tbl_track_login" is not in valid camel caps format Open
FROM $tbl_track_login
- Exclude checks
Variable "q_last_connection" is not in valid camel caps format Open
$q_last_connection = Database::query($sql);
- Exclude checks
Variable "q_last_connection" is not in valid camel caps format Open
$row = Database::fetch_array($q_last_connection);
- Exclude checks
Variable "user_id" is not in valid camel caps format Open
$user_id,
- Exclude checks
Variable "item_id" is not in valid camel caps format Open
error_log("item_id: $item_id - lp_id: $lp_id - user_id: - $user_id - view_id: $view_id - item_id: $item_id");
- Exclude checks
Variable "view_id" is not in valid camel caps format Open
error_log("item_id: $item_id - lp_id: $lp_id - user_id: - $user_id - view_id: $view_id - item_id: $item_id");
- Exclude checks
Variable "user_id" is not in valid camel caps format Open
$myLP = learnpath::getLpFromSession($courseId, $lp_id, $user_id);
- Exclude checks
Variable "tbl_track_login" is not in valid camel caps format Open
$tbl_track_login = Database::get_main_table(TABLE_STATISTIC_TRACK_E_LOGIN);
- Exclude checks
Variable "lp_view_session_id" is not in valid camel caps format Open
error_log("lp_view_session_id :".$myLP->lp_view_session_id);
- Exclude checks
Missing parameter name Open
* @param int LP ID
- Exclude checks
Variable "next_item" is not in valid camel caps format Open
switch ($next_item) {
- Exclude checks
Variable "item_id" is not in valid camel caps format Open
$myLPI = $myLP->items[$item_id];
- Exclude checks
Variable "my_type" is not in valid camel caps format Open
$my_type = $myLPI->get_type();
- Exclude checks
Variable "real_time" is not in valid camel caps format Open
$real_time = time() - $time;
- Exclude checks
Variable "current_data" is not in valid camel caps format Open
$myLPI->current_data = $suspend;
- Exclude checks
Variable "core_exit" is not in valid camel caps format Open
if ('undefined' !== $core_exit) {
- Exclude checks
Variable "item_id" is not in valid camel caps format Open
$return .= "update_toc('".$myStatus."','".$item_id."');";
- Exclude checks
Variable "update_list" is not in valid camel caps format Open
$update_list = $myLP->get_update_queue();
- Exclude checks
Variable "item_id" is not in valid camel caps format Open
$mediaplayer = $myLP->get_mediaplayer($item_id, 'true');
- Exclude checks
Variable "current_item" is not in valid camel caps format Open
error_log('In {default} - next item is '.$new_item_id.'(current: '.$current_item.')');
- Exclude checks
Variable "mylesson_status" is not in valid camel caps format Open
$mylesson_status = $mylpi->get_status();
- Exclude checks
Variable "lp_id" is not in valid camel caps format Open
$lp_id,
- Exclude checks
Variable "view_id" is not in valid camel caps format Open
$view_id,
- Exclude checks
Variable "my_upd_id" is not in valid camel caps format Open
if ($my_upd_id != $item_id) {
- Exclude checks
Variable "i_id_last_connection" is not in valid camel caps format Open
$i_id_last_connection = $row['login_id'];
- Exclude checks
Variable "force_commit" is not in valid camel caps format Open
if ($mylp->force_commit) {
- Exclude checks
Variable "lp_id" is not in valid camel caps format Open
$myLP = learnpath::getLpFromSession($courseId, $lp_id, $user_id);
- Exclude checks
Variable "item_id" is not in valid camel caps format Open
$prerequisitesCheck = $myLP->prerequisites_match($item_id);
- Exclude checks
Variable "min_score" is not in valid camel caps format Open
$myLPI->min_score = $min;
- Exclude checks
Variable "my_type" is not in valid camel caps format Open
} elseif ('sco' === $my_type) {
- Exclude checks
Variable "current_item" is not in valid camel caps format Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
- Exclude checks
Variable "user_id" is not in valid camel caps format Open
error_log('Params('.$lpId.','.$user_id.','.$view_id.','.$current_item.','.$next_item.')');
- Exclude checks
Variable "next_item" is not in valid camel caps format Open
error_log('Params('.$lpId.','.$user_id.','.$view_id.','.$current_item.','.$next_item.')');
- Exclude checks
Variable "new_item_id" is not in valid camel caps format Open
error_log('In {next} - next item is '.$new_item_id.'(current: '.$current_item.')');
- Exclude checks
Variable "mylesson_location" is not in valid camel caps format Open
$mylesson_location = $mylpi->get_lesson_location();
- Exclude checks
Variable "lp_id" is not in valid camel caps format Open
error_log("item_id: $item_id - lp_id: $lp_id - user_id: - $user_id - view_id: $view_id - item_id: $item_id");
- Exclude checks
Variable "my_type" is not in valid camel caps format Open
if ('hotpotatoes' === $my_type) {
- Exclude checks
Variable "view_id" is not in valid camel caps format Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
- Exclude checks
Variable "new_item_id" is not in valid camel caps format Open
error_log('In {first} - next item is '.$new_item_id.'(current: '.$current_item.')');
- Exclude checks
Variable "new_item_id" is not in valid camel caps format Open
$new_item_id = $next_item;
- Exclude checks
Variable "myprogress_mode" is not in valid camel caps format Open
$myprogress_mode = ('' == $myprogress_mode ? '%' : $myprogress_mode);
- Exclude checks
Variable "mylesson_location" is not in valid camel caps format Open
"olms.lesson_location='".$mylesson_location."';".
- Exclude checks
Variable "mylesson_mode" is not in valid camel caps format Open
$mylesson_mode = $mylpi->get_lesson_mode();
- Exclude checks
Variable "new_item_id" is not in valid camel caps format Open
"olms.next_item=".$new_item_id.";".// This one is very important to replace possible literal strings.
- Exclude checks
Variable "time_spent" is not in valid camel caps format Open
update_time_bar('$time_spent','$time_total','%');\n
- Exclude checks
Variable "new_item_id" is not in valid camel caps format Open
update_toc('highlight','".$new_item_id."');
- Exclude checks
Variable "mylesson_status" is not in valid camel caps format Open
update_toc('$mylesson_status','".$new_item_id."');
- Exclude checks
Variable "myprogress_mode" is not in valid camel caps format Open
$myprogress_mode = ('' == $myprogress_mode ? '%' : $myprogress_mode);
- Exclude checks
Variable "mylaunch_data" is not in valid camel caps format Open
$mylaunch_data = $mylpi->get_launch_data();
- Exclude checks
Variable "user_id" is not in valid camel caps format Open
"olms.lms_user_id=".$user_id.";".
- Exclude checks
Variable "myinteractions_count" is not in valid camel caps format Open
"olms.lms_item_interactions_count = '".$myinteractions_count."';".
- Exclude checks
Variable "new_item_id" is not in valid camel caps format Open
update_toc('$mylesson_status','".$new_item_id."');
- Exclude checks
Variable "time_total" is not in valid camel caps format Open
$time_spent = $time_total;
- Exclude checks
Variable "new_item_id" is not in valid camel caps format Open
Session::write('scorm_item_id', $new_item_id);
- Exclude checks
Variable "mysuspend_data" is not in valid camel caps format Open
"olms.suspend_data='".$mysuspend_data."';".
- Exclude checks
Variable "myprogress_mode" is not in valid camel caps format Open
$myprogress_mode = $mylp->get_progress_bar_mode();
- Exclude checks
Variable "myprogress_mode" is not in valid camel caps format Open
update_progress_bar('$mycomplete','$mytotal','$myprogress_mode');
- Exclude checks
Expected 1 space after FUNCTION keyword; 0 found Open
$escapedParents = array_map(function($parentTitle) {
- Exclude checks
Variable "mylesson_mode" is not in valid camel caps format Open
"olms.lms_item_lesson_mode = '".$mylesson_mode."';".
- Exclude checks
Variable "mycore_exit" is not in valid camel caps format Open
"olms.lms_item_core_exit = '".$mycore_exit."';\n".
- Exclude checks
Variable "mylaunch_data" is not in valid camel caps format Open
"olms.lms_item_launch_data = '".$mylaunch_data."';".
- Exclude checks
Variable "time_total" is not in valid camel caps format Open
if ($lpTime >= $time_total) {
- Exclude checks
Variable "mysession_time" is not in valid camel caps format Open
"olms.session_time='".$mysession_time."';".
- Exclude checks
Variable "mycore_exit" is not in valid camel caps format Open
$mycore_exit = $mylpi->get_core_exit();
- Exclude checks
Variable "mylaunch_data" is not in valid camel caps format Open
"olms.launch_data = '".$mylaunch_data."';".
- Exclude checks
Variable "myprogress_mode" is not in valid camel caps format Open
$myprogress_mode = ('' == $myprogress_mode ? '%' : $myprogress_mode);
- Exclude checks
Variable "view_id" is not in valid camel caps format Open
"olms.lms_view_id=".$view_id.";".
- Exclude checks
Variable "time_spent" is not in valid camel caps format Open
$time_spent = $time_total;
- Exclude checks
Variable "time_spent" is not in valid camel caps format Open
$time_spent = $lpTime;
- Exclude checks
Variable "mytotal_time" is not in valid camel caps format Open
"olms.total_time = '".$mytotal_time."';".
- Exclude checks
Variable "mymastery_score" is not in valid camel caps format Open
"olms.mastery_score = '".$mymastery_score."';".
- Exclude checks
Variable "myinteractions_count" is not in valid camel caps format Open
"olms.lms_item_objectives_count = '".$myinteractions_count."';".
- Exclude checks
Variable "current_item" is not in valid camel caps format Open
"update_toc('unhighlight','".$current_item."');
- Exclude checks
Variable "myinteractions_count" is not in valid camel caps format Open
$myinteractions_count = $mylpi->get_interactions_count();
- Exclude checks
Variable "new_item_id" is not in valid camel caps format Open
"olms.lms_item_id=".$new_item_id.";".
- Exclude checks
Variable "time_total" is not in valid camel caps format Open
$time_total = intval($pl * $tc * $perc / 100) * 60;
- Exclude checks
Variable "user_id" is not in valid camel caps format Open
$lpTimeList = Tracking::getCalculateTime($user_id, api_get_course_int_id(), $sessionId);
- Exclude checks
Variable "mylesson_location" is not in valid camel caps format Open
$mylesson_location = $mylpi->get_lesson_location();
- Exclude checks
Variable "mylesson_status" is not in valid camel caps format Open
"olms.lesson_status='".$mylesson_status."';".
- Exclude checks
Variable "time_total" is not in valid camel caps format Open
update_time_bar('$time_spent','$time_total','%');\n
- Exclude checks
Variable "mymax_time_allowed" is not in valid camel caps format Open
"olms.max_time_allowed = '".$mymax_time_allowed."';".
- Exclude checks
The variable $my_upd_status is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $item_id is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $user_id is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $current_item is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $new_item_id is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $mysuspend_data is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $new_item_id is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $myinteractions_count is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $time_spent is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $item_id is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $tbl_track_login is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $current_item is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $current_item is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $new_item_id is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $current_item is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $new_item_id is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $mytotal_time is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $new_item_id is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $item_id is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $new_item_id is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $core_exit is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $update_list is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $item_id is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $mylesson_status is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $mytotal_time is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $mylesson_location is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $mysuspend_data is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $mymax_time_allowed is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $mylaunch_data is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $item_id is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $user_id is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $current_item is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $mysession_time is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $myprogress_mode is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $mycore_exit is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $lp_id is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $item_id is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $real_time is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $current_time is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $new_item_id is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $current_item is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $next_item is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $mymastery_score is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $mymastery_score is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $myprogress_mode is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $my_type is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $tbl_track_login is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $i_id_last_connection is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $current_item is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $view_id is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $mymax_time_allowed is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $view_id is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $mylaunch_data is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $time_total is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $core_exit is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $my_upd_id is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $q_last_connection is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $new_item_id is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $mylaunch_data is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $mylesson_mode is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $myinteractions_count is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $view_id is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $item_id is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $clean_interaction is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $update_list is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $tbl_track_login is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $q_last_connection is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $view_id is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $next_item is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $mylaunch_data is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $item_id is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $new_item_id is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $new_item_id is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $new_item_id is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $myinteractions_count is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $item_id is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $lp_id is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $my_type is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $clean_interaction is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $my_upd_id is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $new_item_id is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $time_spent is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $time_spent is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $myprogress_mode is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $new_item_id is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $item_id is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $item_id is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $item_id is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $q_last_connection is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $current_time is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $view_id is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $mylesson_location is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $myprogress_mode is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $mycore_exit is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $time_total is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $current_item is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $lp_id is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $user_id is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $user_id is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $real_time is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $current_item is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $mylesson_mode is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $current_item is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $mylesson_location is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $mylesson_status is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $item_id is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $view_id is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $lp_id is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $item_id is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $next_item is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $new_item_id is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $mylesson_status is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $user_id is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $time_total is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $core_exit is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $my_type is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $real_time is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $my_upd_id is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $my_upd_status is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $i_id_last_connection is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $user_id is not named in camelCase. Open
public static function saveItem(
$lp_id,
$user_id,
$view_id,
$item_id,
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $next_item is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $new_item_id is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $new_item_id is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $current_item is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $new_item_id is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $mysession_time is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $myprogress_mode is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $user_id is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $time_total is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}
Source
The variable $new_item_id is not named in camelCase. Open
public static function switchItem($lpId, $user_id, $view_id, $current_item, $next_item)
{
$debug = 0;
$return = '';
if ($debug > 0) {
- Read upRead up
- Exclude checks
CamelCaseVariableName
Since: 0.2
It is considered best practice to use the camelCase notation to name variables.
Example
class ClassName {
public function doSomething() {
$data_module = new DataModule();
}
}