Skip to content

Commit 9b7b2bd

Browse files
committed
CS
1 parent 233d4f2 commit 9b7b2bd

File tree

7 files changed

+10
-9
lines changed

7 files changed

+10
-9
lines changed

app/autoload.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
use Composer\Autoload\ClassLoader;
55

66
/**
7-
* @var ClassLoader $loader
7+
* @var ClassLoader
88
*/
99
$loader = require __DIR__.'/../vendor/autoload.php';
1010

src/AppBundle/Controller/DefaultController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public function homepageAction()
1515
$repositories = $this->get('app.repository_provider')->getAllRepositories();
1616

1717
return $this->render('default/homepage.html.twig', [
18-
'repositories' => $repositories
18+
'repositories' => $repositories,
1919
]);
2020
}
2121
}

src/AppBundle/Issues/GitHub/GitHubStatusApi.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ public function __construct(CachedLabelsApi $labelsApi)
2929
}
3030

3131
/**
32-
* @param int $issueNumber The GitHub issue number
33-
* @param string $newStatus A Status::* constant
32+
* @param int $issueNumber The GitHub issue number
33+
* @param string $newStatus A Status::* constant
3434
* @param Repository $repository
3535
*/
3636
public function setIssueStatus($issueNumber, $newStatus, Repository $repository)

src/AppBundle/Issues/GitHubRequestHandler.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
use Symfony\Component\Security\Core\Exception\AccessDeniedException;
1313

1414
/**
15-
* Handles GitHub webhook requests
15+
* Handles GitHub webhook requests.
1616
*
1717
* @author Jules Pietri <jules@heahprod.com>
1818
*/
@@ -31,6 +31,7 @@ public function __construct(EventDispatcherInterface $dispatcher, RepositoryProv
3131

3232
/**
3333
* @param Request $request
34+
*
3435
* @return array The response data
3536
*/
3637
public function handle(Request $request)

src/AppBundle/Repository/Repository.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ class Repository
2020
private $name;
2121

2222
/**
23-
* An array of subscriber service ids
23+
* An array of subscriber service ids.
2424
*
2525
* @var array
2626
*/
2727
private $subscribers;
2828

2929
/**
30-
* The webhook secret used by GitHub
30+
* The webhook secret used by GitHub.
3131
*
3232
* @var string
3333
*/

src/AppBundle/Subscriber/NeedsReviewNewPRSubscriber.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,4 @@ public static function getSubscribedEvents()
4949
GitHubEvents::PULL_REQUEST => 'onPullRequest',
5050
);
5151
}
52-
}
52+
}

src/AppBundle/Subscriber/StatusChangeByCommentSubscriber.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,4 @@ public static function getSubscribedEvents()
6363
GitHubEvents::ISSUE_COMMENT => 'onIssueComment',
6464
);
6565
}
66-
}
66+
}

0 commit comments

Comments
 (0)