Skip to content

Commit

Permalink
Fix codestyle errors
Browse files Browse the repository at this point in the history
  • Loading branch information
studioromeo committed Oct 16, 2019
1 parent 72a1261 commit 704c48b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/ChangelogsPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ private function autoloadNeededClasses()
{
foreach (new \RecursiveIteratorIterator(new \RecursiveDirectoryIterator(__DIR__, \FilesystemIterator::SKIP_DOTS)) as $file) {
if ('.php' === substr($file, 0, -4)) {
class_exists(__NAMESPACE__.str_replace('/', '\\', substr($file, \strlen(__DIR__), -4)));
class_exists(__NAMESPACE__ . str_replace('/', '\\', substr($file, \strlen(__DIR__), -4)));
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public function isDev()

/**
* Return the version string for CLI Output
* In cas of dev version is adds the vcs hash
* In case of dev version is adds the vcs hash.
*
* @return string
*/
Expand Down

0 comments on commit 704c48b

Please sign in to comment.