qcubed/framework

View on GitHub
assets/php/examples/events_actions/javascript_alerts.php

Summary

Maintainability
A
0 mins
Test Coverage

Missing class import via use statement (line '18', column '59').
Open

            $this->btnJavaScript->AddAction(new QClickEvent(), new QJavaScriptAction('SomeArbitraryJavaScript();'));

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

Missing class import via use statement (line '23', column '54').
Open

            $this->btnAlert->AddAction(new QClickEvent(), new QAlertAction("This is a test of the \"QAlertAction\" example.\r\nIsn't this fun? =)"));

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

Missing class import via use statement (line '26', column '28').
Open

            $this->btnConfirm = new QButton($this);

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

Missing class import via use statement (line '18', column '40').
Open

            $this->btnJavaScript->AddAction(new QClickEvent(), new QJavaScriptAction('SomeArbitraryJavaScript();'));

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

Missing class import via use statement (line '30', column '37').
Open

            $this->btnConfirm->AddAction(new QClickEvent(), new QAjaxAction('btnConfirm_Click'));

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

Missing class import via use statement (line '30', column '56').
Open

            $this->btnConfirm->AddAction(new QClickEvent(), new QAjaxAction('btnConfirm_Click'));

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

Missing class import via use statement (line '23', column '35').
Open

            $this->btnAlert->AddAction(new QClickEvent(), new QAlertAction("This is a test of the \"QAlertAction\" example.\r\nIsn't this fun? =)"));

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

Missing class import via use statement (line '12', column '28').
Open

            $this->lblMessage = new QLabel($this);

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

Missing class import via use statement (line '16', column '31').
Open

            $this->btnJavaScript = new QButton($this);

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

Missing class import via use statement (line '28', column '37').
Open

            $this->btnConfirm->AddAction(new QClickEvent(), new QConfirmAction('Are you SURE you want to update the lblMessage?'));

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

Missing class import via use statement (line '28', column '56').
Open

            $this->btnConfirm->AddAction(new QClickEvent(), new QConfirmAction('Are you SURE you want to update the lblMessage?'));

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

Missing class import via use statement (line '21', column '26').
Open

            $this->btnAlert = new QButton($this);

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 Form_Create is not named in camelCase.
Open

        protected function Form_Create() {
            // Define the Controls
            $this->lblMessage = new QLabel($this);
            $this->lblMessage->Text = 'Click on the "QConfirmAction Example" button to change.';

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 btnConfirm_Click is not named in camelCase.
Open

        protected function btnConfirm_Click() {
            // Update the Label
            if ($this->lblMessage->Text == 'Hello, world!')
                $this->lblMessage->Text = 'Buh Bye!';
            else

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

There are no issues that match your filters.

Category
Status