PressLabs/gitium

View on GitHub

Showing 4,852 of 4,852 total issues

The method setup_step_1_key_pair is not named in camelCase.
Open

    private function setup_step_1_key_pair() {
        if ( ! defined( 'GIT_KEY_FILE' ) || GIT_KEY_FILE == '' ) :
            list( $git_public_key, ) = gitium_get_keypair(); ?>
            <tr>
            <th scope="row"><label for="key_pair"><?php _e( 'Key pair', 'gitium' ); ?></label></th>

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

    function _rrmdir( $dir ) {
        if ( empty( $dir ) || ! is_dir( $dir ) ) {
            return false;
        }

Severity: Minor
Found in gitium/inc/class-git-wrapper.php by phpmd

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

    function can_exec_git() {
        list( $return, ) = $this->_call( 'version' );
        return ( 0 == $return );
    }
Severity: Minor
Found in gitium/inc/class-git-wrapper.php by phpmd

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

    function get_ahead_commits() {
        list( , $commits ) = $this->_call( 'rev-list', '@{u}..' );
        return $commits;
    }
Severity: Minor
Found in gitium/inc/class-git-wrapper.php by phpmd

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

    function is_dot_git_dir( $dir ) {
        $realpath   = realpath( $dir );
        $git_config = realpath( $realpath . '/config' );
        $git_index  = realpath( $realpath . '/index' );
        if ( ! empty( $realpath ) && is_dir( $realpath ) && file_exists( $git_config ) && file_exists( $git_index ) ) {
Severity: Minor
Found in gitium/inc/class-git-wrapper.php by phpmd

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

    function get_remote_tracking_branch() {
        list( $return, $response ) = $this->_call( 'rev-parse', '--abbrev-ref', '--symbolic-full-name', '@{u}' );
        if ( 0 == $return ) {
            return $response[0];
        }
Severity: Minor
Found in gitium/inc/class-git-wrapper.php by phpmd

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

    function get_local_branch() {
        list( $return, $response ) = $this->_call( 'rev-parse', '--abbrev-ref', 'HEAD' );
        if ( 0 == $return ) {
            return $response[0];
        }
Severity: Minor
Found in gitium/inc/class-git-wrapper.php by phpmd

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

    protected function _resolve_merge_conflicts( $message ) {
        list( , $changes ) = $this->status( true );
        $this->_log( $changes );
        foreach ( $changes as $path => $change ) {
            if ( in_array( $change, array( 'UD', 'DD' ) ) ) {
Severity: Minor
Found in gitium/inc/class-git-wrapper.php by phpmd

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

    function remove_wp_content_from_version_control() {
        $process = proc_open(
            'rm -rf ' . ABSPATH . '/wp-content/.git',
            array(
                0 => array( 'pipe', 'r' ),  // stdin
Severity: Minor
Found in gitium/inc/class-git-wrapper.php by phpmd

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

    protected function show_disconnect_repository_button() {
        ?>
        <form name="gitium_form_disconnect" id="gitium_form_disconnect" action="" method="POST">
            <?php
                wp_nonce_field( 'gitium-admin' );
Severity: Minor
Found in gitium/inc/class-gitium-menu.php by phpmd

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

    private function can_exec_ssh_git_file() {
        $filepath = dirname( __FILE__ ) . '/ssh-git';

        if ( ! function_exists( 'is_executable' ) ) {
            return array( false, 'The function `is_executable` is disabled!' );

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

    public function table_start_row() {
        static $counter = 0;
        $counter++;
        echo ( 0 != $counter % 2 ) ? '<tr class="active">' : '<tr class="inactive">';
    }

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

Severity
Category
Status
Source
Language