Skip to content

Commit 7bbb041

Browse files
janopaegithub-actions[bot]
authored andcommitted
Fix CS with PHP-CS-Fixer
1 parent 404c006 commit 7bbb041

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/AppBundle/Exception/NoVcsDriverFoundException.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
namespace AppBundle\Exception;
66

7-
final class NoVcsDriverFoundException extends \RuntimeException
7+
use RuntimeException;
8+
9+
final class NoVcsDriverFoundException extends RuntimeException
810
{
911
}

src/AppBundle/Factory/VcsDriverFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public function getDriver($vcsUrl): VcsDriverInterface
5959
}
6060
}
6161

62-
throw new NoVcsDriverFoundException('No VCS driver found for URL: ' . $vcsUrl);
62+
throw new NoVcsDriverFoundException('No VCS driver found for URL: '.$vcsUrl);
6363
}
6464

6565
/**

0 commit comments

Comments
 (0)