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.
Passed
Branch php72 (57c34e)
by Joni
05:01
created
lib/ASN1/Exception/DecodeException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Sop\ASN1\Exception;
6 6
 
Please login to merge, or discard this patch.
lib/ASN1/Feature/Encodable.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Sop\ASN1\Feature;
6 6
 
Please login to merge, or discard this patch.
lib/ASN1/Feature/ElementBase.php 2 patches
Indentation   +79 added lines, -79 removed lines patch added patch discarded remove patch
@@ -13,91 +13,91 @@
 block discarded – undo
13 13
  */
14 14
 interface ElementBase extends Encodable
15 15
 {
16
-    /**
17
-     * Get the class of the ASN.1 type.
18
-     *
19
-     * One of <code>Identifier::CLASS_*</code> constants.
20
-     *
21
-     * @return int
22
-     */
23
-    public function typeClass(): int;
16
+	/**
17
+	 * Get the class of the ASN.1 type.
18
+	 *
19
+	 * One of <code>Identifier::CLASS_*</code> constants.
20
+	 *
21
+	 * @return int
22
+	 */
23
+	public function typeClass(): int;
24 24
 
25
-    /**
26
-     * Check whether the element is constructed.
27
-     *
28
-     * Otherwise it's primitive.
29
-     *
30
-     * @return bool
31
-     */
32
-    public function isConstructed(): bool;
25
+	/**
26
+	 * Check whether the element is constructed.
27
+	 *
28
+	 * Otherwise it's primitive.
29
+	 *
30
+	 * @return bool
31
+	 */
32
+	public function isConstructed(): bool;
33 33
 
34
-    /**
35
-     * Get the tag of the element.
36
-     *
37
-     * Interpretation of the tag depends on the context. For example it may
38
-     * represent a universal type tag or a tag of an implicitly or explicitly
39
-     * tagged type.
40
-     *
41
-     * @return int
42
-     */
43
-    public function tag(): int;
34
+	/**
35
+	 * Get the tag of the element.
36
+	 *
37
+	 * Interpretation of the tag depends on the context. For example it may
38
+	 * represent a universal type tag or a tag of an implicitly or explicitly
39
+	 * tagged type.
40
+	 *
41
+	 * @return int
42
+	 */
43
+	public function tag(): int;
44 44
 
45
-    /**
46
-     * Check whether the element is a type of a given tag.
47
-     *
48
-     * @param int $tag Type tag
49
-     *
50
-     * @return bool
51
-     */
52
-    public function isType(int $tag): bool;
45
+	/**
46
+	 * Check whether the element is a type of a given tag.
47
+	 *
48
+	 * @param int $tag Type tag
49
+	 *
50
+	 * @return bool
51
+	 */
52
+	public function isType(int $tag): bool;
53 53
 
54
-    /**
55
-     * Check whether the element is a type of a given tag.
56
-     *
57
-     * Throws an exception if expectation fails.
58
-     *
59
-     * @param int $tag Type tag
60
-     *
61
-     * @throws \UnexpectedValueException If the element type differs from the
62
-     *                                   expected
63
-     *
64
-     * @return ElementBase
65
-     */
66
-    public function expectType(int $tag): ElementBase;
54
+	/**
55
+	 * Check whether the element is a type of a given tag.
56
+	 *
57
+	 * Throws an exception if expectation fails.
58
+	 *
59
+	 * @param int $tag Type tag
60
+	 *
61
+	 * @throws \UnexpectedValueException If the element type differs from the
62
+	 *                                   expected
63
+	 *
64
+	 * @return ElementBase
65
+	 */
66
+	public function expectType(int $tag): ElementBase;
67 67
 
68
-    /**
69
-     * Check whether the element is tagged (context specific).
70
-     *
71
-     * @return bool
72
-     */
73
-    public function isTagged(): bool;
68
+	/**
69
+	 * Check whether the element is tagged (context specific).
70
+	 *
71
+	 * @return bool
72
+	 */
73
+	public function isTagged(): bool;
74 74
 
75
-    /**
76
-     * Check whether the element is tagged (context specific) and optionally has
77
-     * a given tag.
78
-     *
79
-     * Throws an exception if the element is not tagged or tag differs from
80
-     * the expected.
81
-     *
82
-     * @param null|int $tag Optional type tag
83
-     *
84
-     * @throws \UnexpectedValueException If expectation fails
85
-     *
86
-     * @return TaggedType
87
-     */
88
-    public function expectTagged(?int $tag = null): TaggedType;
75
+	/**
76
+	 * Check whether the element is tagged (context specific) and optionally has
77
+	 * a given tag.
78
+	 *
79
+	 * Throws an exception if the element is not tagged or tag differs from
80
+	 * the expected.
81
+	 *
82
+	 * @param null|int $tag Optional type tag
83
+	 *
84
+	 * @throws \UnexpectedValueException If expectation fails
85
+	 *
86
+	 * @return TaggedType
87
+	 */
88
+	public function expectTagged(?int $tag = null): TaggedType;
89 89
 
90
-    /**
91
-     * Get the object as an abstract Element instance.
92
-     *
93
-     * @return Element
94
-     */
95
-    public function asElement(): Element;
90
+	/**
91
+	 * Get the object as an abstract Element instance.
92
+	 *
93
+	 * @return Element
94
+	 */
95
+	public function asElement(): Element;
96 96
 
97
-    /**
98
-     * Get the object as an UnspecifiedType instance.
99
-     *
100
-     * @return UnspecifiedType
101
-     */
102
-    public function asUnspecified(): UnspecifiedType;
97
+	/**
98
+	 * Get the object as an UnspecifiedType instance.
99
+	 *
100
+	 * @return UnspecifiedType
101
+	 */
102
+	public function asUnspecified(): UnspecifiedType;
103 103
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types = 1);
3
+declare(strict_types=1);
4 4
 
5 5
 namespace Sop\ASN1\Feature;
6 6
 
Please login to merge, or discard this patch.