GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( 10db73...f345cf )
by Florian
02:54
created
Form/FacetType.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -30,12 +30,12 @@
 block discarded – undo
30 30
 		$builder->resetModelTransformers();
31 31
 		$builder->resetViewTransformers();
32 32
 		
33
-		if($options['multiple']) {
34
-			$builder->addEventListener(FormEvents::PRE_SUBMIT, function (FormEvent $event) {
33
+		if ($options['multiple']) {
34
+			$builder->addEventListener(FormEvents::PRE_SUBMIT, function(FormEvent $event) {
35 35
 				$event->stopPropagation();
36 36
 			}, 1);
37 37
 		}
38
-		$builder->addEventListener(FormEvents::SUBMIT, function (FormEvent $event) {
38
+		$builder->addEventListener(FormEvents::SUBMIT, function(FormEvent $event) {
39 39
 			$data = $event->getForm()->getExtraData();
40 40
 			$event->setData(array_unique(array_merge($data, $event->getData())));
41 41
 		});
Please login to merge, or discard this patch.
Tests/Model/Result/FacetSetAdapterTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
 
17 17
 class FacetSetAdapterTest extends \PHPUnit_Framework_TestCase {
18 18
 
19
-	public function testAddFacetValue(){
19
+	public function testAddFacetValue() {
20 20
 		$facets = new FacetSetAdapter(array());
21 21
 		$this->assertCount(0, $facets);
22 22
 		$facets->addFacetValue(Document::FIELD_AUTHOR, 'Oliver Kotte');
@@ -26,13 +26,13 @@  discard block
 block discarded – undo
26 26
 		$this->assertCount(1, $facets);
27 27
 		$this->assertCount(2, $facets->getFacet(Document::FIELD_AUTHOR));
28 28
 		
29
-		foreach($facets as $facetKey => $facetValues){
29
+		foreach ($facets as $facetKey => $facetValues) {
30 30
 			$this->assertEquals(Document::FIELD_AUTHOR, $facetKey);
31 31
 			$this->assertCount(2, $facetValues);
32 32
 		}
33 33
 	}
34 34
 	
35
-	public function testGetFacet(){
35
+	public function testGetFacet() {
36 36
 		$facets = new FacetSetAdapter(array());
37 37
 		$this->assertCount(0, $facets);
38 38
 		$this->assertNull($facets->getFacet('NotExisting'));
Please login to merge, or discard this patch.