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 ( efbfef...6561ca )
by Sebastian
02:39
created
src/MatchesSnapshots.php 2 patches
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -24,11 +24,17 @@
 block discarded – undo
24 24
         $this->doSnapshotAssertion($actual, new VarDriver());
25 25
     }
26 26
 
27
+    /**
28
+     * @param string $actual
29
+     */
27 30
     public function assertMatchesXmlSnapshot($actual)
28 31
     {
29 32
         $this->doSnapshotAssertion($actual, new XmlDriver());
30 33
     }
31 34
 
35
+    /**
36
+     * @param string $actual
37
+     */
32 38
     public function assertMatchesJsonSnapshot($actual)
33 39
     {
34 40
         $this->doSnapshotAssertion($actual, new JsonDriver());
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace Spatie\Snapshots;
4 4
 
5
-use PHPUnit_Framework_ExpectationFailedException;
6 5
 use PHPUnit\Framework\ExpectationFailedException;
6
+use PHPUnit_Framework_ExpectationFailedException;
7 7
 use ReflectionClass;
8 8
 use Spatie\Snapshots\Drivers\JsonDriver;
9 9
 use Spatie\Snapshots\Drivers\VarDriver;
Please login to merge, or discard this patch.