public/main/exercise/export/scorm/ScormAssessmentItem.php
The property $question_ident is not named in camelCase. Open
Open
class ScormAssessmentItem
{
public $question;
public $question_ident;
public $answer;
- Read upRead up
- Exclude checks
CamelCasePropertyName
Since: 0.2
It is considered best practice to use the camelCase notation to name attributes.
Example
class ClassName {
protected $property_name;
}
Source
Method name "ScormAssessmentItem::start_js" is not in camel caps format Open
Open
public function start_js()
- Exclude checks
Method name "ScormAssessmentItem::start_header" is not in camel caps format Open
Open
public function start_header()
- Exclude checks
Method name "ScormAssessmentItem::end_js" is not in camel caps format Open
Open
public function end_js()
- Exclude checks
Method name "ScormAssessmentItem::start_page" is not in camel caps format Open
Open
public function start_page()
- Exclude checks
Method name "ScormAssessmentItem::end_header" is not in camel caps format Open
Open
public function end_header()
- Exclude checks
Method name "ScormAssessmentItem::end_page" is not in camel caps format Open
Open
public function end_page()
- Exclude checks
Method name "ScormAssessmentItem::end_body" is not in camel caps format Open
Open
public function end_body()
- Exclude checks
Method name "ScormAssessmentItem::start_body" is not in camel caps format Open
Open
public function start_body()
- Exclude checks
Member variable "question_ident" is not in valid camel caps format Open
Open
public $question_ident;
- Exclude checks
The method end_js is not named in camelCase. Open
Open
public function end_js()
{
/*if ($this->standalone) {
return '</script>';
}*/
- Read upRead up
- Exclude checks
CamelCaseMethodName
Since: 0.2
It is considered best practice to use the camelCase notation to name methods.
Example
class ClassName {
public function get_name() {
}
}
Source
The method start_body is not named in camelCase. Open
Open
public function start_body()
{
/*if ($this->standalone) {
return '<body><form id="dokeos_scorm_form" method="post" action="">';
}*/
- Read upRead up
- Exclude checks
CamelCaseMethodName
Since: 0.2
It is considered best practice to use the camelCase notation to name methods.
Example
class ClassName {
public function get_name() {
}
}
Source
The method start_page is not named in camelCase. Open
Open
public function start_page()
{
return '';
}
- Read upRead up
- Exclude checks
CamelCaseMethodName
Since: 0.2
It is considered best practice to use the camelCase notation to name methods.
Example
class ClassName {
public function get_name() {
}
}
Source
The method start_header is not named in camelCase. Open
Open
public function start_header()
{
/*if ($this->standalone) {
return '<head>';
}*/
- Read upRead up
- Exclude checks
CamelCaseMethodName
Since: 0.2
It is considered best practice to use the camelCase notation to name methods.
Example
class ClassName {
public function get_name() {
}
}
Source
The method end_header is not named in camelCase. Open
Open
public function end_header()
{
// if ($this->standalone) {
// return '</head>';
// }
- Read upRead up
- Exclude checks
CamelCaseMethodName
Since: 0.2
It is considered best practice to use the camelCase notation to name methods.
Example
class ClassName {
public function get_name() {
}
}
Source
The method start_js is not named in camelCase. Open
Open
public function start_js()
{
return '<script type="text/javascript" src="assets/api_wrapper.js"></script>';
}
- Read upRead up
- Exclude checks
CamelCaseMethodName
Since: 0.2
It is considered best practice to use the camelCase notation to name methods.
Example
class ClassName {
public function get_name() {
}
}
Source
The method end_page is not named in camelCase. Open
Open
public function end_page()
{
/*if ($this->standalone) {
return '</html>';
}*/
- Read upRead up
- Exclude checks
CamelCaseMethodName
Since: 0.2
It is considered best practice to use the camelCase notation to name methods.
Example
class ClassName {
public function get_name() {
}
}
Source
The method end_body is not named in camelCase. Open
Open
public function end_body()
{
/*if ($this->standalone) {
return '<br /><input class="btn" type="button" id="dokeos_scorm_submit" name="dokeos_scorm_submit" value="OK" /></form></body>';
}*/
- Read upRead up
- Exclude checks
CamelCaseMethodName
Since: 0.2
It is considered best practice to use the camelCase notation to name methods.
Example
class ClassName {
public function get_name() {
}
}