Skip to content

Commit 1538dbe

Browse files
committed
Renaming the PHPCS_Diff_SVN_parser to PHPCS_Diff_SVN
1 parent 91bfb4a commit 1538dbe

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

class-phpcs-diff-svn-parser.php renamed to class-phpcs-diff-svn.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
class PHPCS_Diff_SVN_parser {
3+
class PHPCS_Diff_SVN {
44

55
// SVN credentials used for checking out individual revisions.
66
private $svn_username = ''; // @todo: add your SVN username here

class-phpcs-diff.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ class PHPCS_Diff {
2222

2323
public function __construct() {
2424

25-
require_once( __DIR__ . 'class-phpcs-diff-svn-parser.php' );
25+
require_once( __DIR__ . 'class-phpcs-diff-svn.php' );
2626

27-
$this->diff_parser = new PHPCS_Diff_SVN_parser( 'hello-dolly' );
27+
$this->diff_parser = new PHPCS_Diff_SVN( 'hello-dolly' );
2828

2929
$this->allowed_extensions = array( 'php', 'js' );
3030
}

0 commit comments

Comments
 (0)