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
Push — develop ( fd70f7...23f23d )
by nguereza
26:15 queued 24:37
created
src/Exception/UploadException.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,6 +40,5 @@
 block discarded – undo
40 40
  * Class UploadException
41 41
  * @package Platine\Upload\Exception
42 42
  */
43
-class UploadException extends RuntimeException
44
-{
43
+class UploadException extends RuntimeException {
45 44
 }
Please login to merge, or discard this patch.
src/Exception/StorageException.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,6 +40,5 @@
 block discarded – undo
40 40
  * Class StorageException
41 41
  * @package Platine\Upload\Exception
42 42
  */
43
-class StorageException extends RuntimeException
44
-{
43
+class StorageException extends RuntimeException {
45 44
 }
Please login to merge, or discard this patch.
src/File/UploadFileInfo.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -52,8 +52,7 @@
 block discarded – undo
52 52
  * Class UploadFileInfo
53 53
  * @package Platine\Upload\File
54 54
  */
55
-class UploadFileInfo
56
-{
55
+class UploadFileInfo {
57 56
     /**
58 57
      * The full file name
59 58
      * @var string
Please login to merge, or discard this patch.
src/Util/Helper.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,8 +55,7 @@
 block discarded – undo
55 55
  * Class Helper
56 56
  * @package Platine\Upload\Util
57 57
  */
58
-class Helper
59
-{
58
+class Helper {
60 59
     /**
61 60
      * Normalize the uploaded files to fit our format
62 61
      *
Please login to merge, or discard this patch.
src/Validator/Rule/UploadError.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,8 +55,7 @@
 block discarded – undo
55 55
  * Class UploadError
56 56
  * @package Platine\Upload\Validator\Rule
57 57
  */
58
-class UploadError implements RuleInterface
59
-{
58
+class UploadError implements RuleInterface {
60 59
     /**
61 60
      * {@inheritdoc}
62 61
      * @see RuleInterface
Please login to merge, or discard this patch.
src/Validator/Rule/Required.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,8 +55,7 @@
 block discarded – undo
55 55
  * Class Required
56 56
  * @package Platine\Upload\Validator\Rule
57 57
  */
58
-class Required implements RuleInterface
59
-{
58
+class Required implements RuleInterface {
60 59
     /**
61 60
      * {@inheritdoc}
62 61
      * @see RuleInterface
Please login to merge, or discard this patch.
src/File/File.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -61,8 +61,7 @@
 block discarded – undo
61 61
  * Class File
62 62
  * @package Platine\Upload\File
63 63
  */
64
-class File extends SplFileInfo implements FileInterface
65
-{
64
+class File extends SplFileInfo implements FileInterface {
66 65
     /**
67 66
      * Factory used to create new instance
68 67
      * @var callable|null
Please login to merge, or discard this patch.
src/Storage/FileSystem.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -62,8 +62,7 @@  discard block
 block discarded – undo
62 62
  * Class FileSystem
63 63
  * @package Platine\Upload\Storage
64 64
  */
65
-class FileSystem implements StorageInterface
66
-{
65
+class FileSystem implements StorageInterface {
67 66
     /**
68 67
      * Path to move uploaded files
69 68
      * @var string
@@ -81,8 +80,7 @@  discard block
 block discarded – undo
81 80
      * @param string $path
82 81
      * @param bool $overwrite
83 82
      */
84
-    public function __construct(string $path, bool $overwrite)
85
-    {
83
+    public function __construct(string $path, bool $overwrite) {
86 84
         $this->overwrite = $overwrite;
87 85
         $directory = $this->normalizePath($path);
88 86
 
Please login to merge, or discard this patch.
src/Storage/StorageInterface.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -59,8 +59,7 @@
 block discarded – undo
59 59
  * Class StorageInterface
60 60
  * @package Platine\Upload\Storage
61 61
  */
62
-interface StorageInterface
63
-{
62
+interface StorageInterface {
64 63
     /**
65 64
      * Move the uploaded file to destination
66 65
      * @param File $file
Please login to merge, or discard this patch.