We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91bfb4a commit 1538dbeCopy full SHA for 1538dbe
class-phpcs-diff-svn-parser.php renamed to class-phpcs-diff-svn.php
@@ -1,6 +1,6 @@
1
<?php
2
3
-class PHPCS_Diff_SVN_parser {
+class PHPCS_Diff_SVN {
4
5
// SVN credentials used for checking out individual revisions.
6
private $svn_username = ''; // @todo: add your SVN username here
class-phpcs-diff.php
@@ -22,9 +22,9 @@ class PHPCS_Diff {
22
23
public function __construct() {
24
25
- require_once( __DIR__ . 'class-phpcs-diff-svn-parser.php' );
+ require_once( __DIR__ . 'class-phpcs-diff-svn.php' );
26
27
- $this->diff_parser = new PHPCS_Diff_SVN_parser( 'hello-dolly' );
+ $this->diff_parser = new PHPCS_Diff_SVN( 'hello-dolly' );
28
29
$this->allowed_extensions = array( 'php', 'js' );
30
}
0 commit comments