Skip to content

Commit 7d45af0

Browse files
Merge pull request #5 from BitbucketAPI/analysis-8QWVdm
Apply fixes from StyleCI
2 parents 0cbae74 + 8a2b5e4 commit 7d45af0

File tree

1 file changed

+8
-10
lines changed

1 file changed

+8
-10
lines changed

sami.php

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
<?php
22

3-
use Sami\Sami;
43
use Sami\RemoteRepository\GitHubRemoteRepository;
5-
use Sami\Version\GitVersionCollection;
4+
use Sami\Sami;
65
use Symfony\Component\Finder\Finder;
76

87
$iterator = Finder::create()
@@ -11,13 +10,12 @@
1110
->exclude('tests')
1211
->exclude('sami')
1312
->exclude('vendor')
14-
->in(__DIR__)
15-
;
13+
->in(__DIR__);
1614

17-
return new Sami($iterator, array(
18-
'title' => 'Bitbucket API Client',
19-
'build_dir' => __DIR__.'/docs',
20-
'cache_dir' => __DIR__.'/sami/cache',
21-
'remote_repository' => new GitHubRemoteRepository('BitbucketAPI/Client', __DIR__),
15+
return new Sami($iterator, [
16+
'title' => 'Bitbucket API Client',
17+
'build_dir' => __DIR__.'/docs',
18+
'cache_dir' => __DIR__.'/sami/cache',
19+
'remote_repository' => new GitHubRemoteRepository('BitbucketAPI/Client', __DIR__),
2220
'default_opened_level' => 2,
23-
));
21+
]);

0 commit comments

Comments
 (0)