Skip to content

Commit 7b873ab

Browse files
committed
Fixed phpmd issues
1 parent a8550e1 commit 7b873ab

File tree

4 files changed

+5
-1
lines changed

4 files changed

+5
-1
lines changed

src/Command/CommitCommandBuilder.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
* Commit command builder.
2727
*
2828
* @SuppressWarnings(PHPMD.TooManyPublicMethods)
29+
* @SuppressWarnings(PHPMD.TooManyMethods)
2930
*/
3031
class CommitCommandBuilder implements CommandBuilderInterface
3132
{

src/Command/LogCommandBuilder.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
* @SuppressWarnings(PHPMD.ExcessivePublicCount)
3030
* @SuppressWarnings(PHPMD.ExcessiveClassComplexity)
3131
* @SuppressWarnings(PHPMD.TooManyPublicMethods)
32+
* @SuppressWarnings(PHPMD.TooManyMethods)
3233
*/
3334
class LogCommandBuilder implements CommandBuilderInterface
3435
{

src/Command/RevParseCommandBuilder.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
* Rev-parse command builder.
2828
*
2929
* @SuppressWarnings(PHPMD.TooManyPublicMethods)
30+
* @SuppressWarnings(PHPMD.TooManyMethods)
3031
*/
3132
class RevParseCommandBuilder implements CommandBuilderInterface
3233
{

src/GitRepository.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
* @author Matthew Gamble <[email protected]>
1919
* @author Ahmad Marzouq <[email protected]>
2020
* @author Sven Baumann <[email protected]>
21-
* @copyright 2014-2018 Tristan Lins <[email protected]>
21+
* @copyright 2014-2022 Tristan Lins <[email protected]>
2222
* @license https://github.com/bit3/git-php/blob/master/LICENSE MIT
2323
* @link https://github.com/bit3/git-php
2424
* @filesource
@@ -54,6 +54,7 @@
5454
* GIT repository adapter.
5555
*
5656
* @SuppressWarnings(PHPMD.TooManyPublicMethods)
57+
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
5758
*/
5859
class GitRepository
5960
{

0 commit comments

Comments
 (0)