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 ( f1b50a...c9554d )
by nguereza
02:57
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/Upload.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 Upload
63 63
  * @package Platine\Upload
64 64
  */
65
-class Upload
66
-{
65
+class Upload {
67 66
 
68 67
     /**
69 68
      * Upload Storage
@@ -232,8 +231,7 @@  discard block
 block discarded – undo
232 231
      * Return the uploaded file information
233 232
      * @return UploadFileInfo|array<int, UploadFileInfo>|bool
234 233
      */
235
-    public function getInfo()
236
-    {
234
+    public function getInfo() {
237 235
         return $this->uploadInfo;
238 236
     }
239 237
 
Please login to merge, or discard this patch.
src/File/FileInterface.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 FileInterface
53 53
  * @package Platine\Upload\File
54 54
  */
55
-interface FileInterface
56
-{
55
+interface FileInterface {
57 56
 
58 57
     /**
59 58
      * Return the path name of uploaded file
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/Size.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -56,8 +56,7 @@  discard block
 block discarded – undo
56 56
  * Class Size
57 57
  * @package Platine\Upload\Validator\Rule
58 58
  */
59
-class Size implements RuleInterface
60
-{
59
+class Size implements RuleInterface {
61 60
 
62 61
     /**
63 62
      * The uploaded file max size
@@ -69,8 +68,7 @@  discard block
 block discarded – undo
69 68
      * Create new instance
70 69
      * @param int|string $size
71 70
      */
72
-    public function __construct($size)
73
-    {
71
+    public function __construct($size) {
74 72
         if (!is_int($size)) {
75 73
             $size = Helper::sizeInBytes($size);
76 74
         }
Please login to merge, or discard this patch.
src/Validator/Rule/MimeType.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -56,8 +56,7 @@  discard block
 block discarded – undo
56 56
  * Class MimeType
57 57
  * @package Platine\Upload\Validator\Rule
58 58
  */
59
-class MimeType implements RuleInterface
60
-{
59
+class MimeType implements RuleInterface {
61 60
 
62 61
     /**
63 62
      * The list of allowed uploaded file mime type
@@ -69,8 +68,7 @@  discard block
 block discarded – undo
69 68
      * Create new instance
70 69
      * @param array<int, string>|string $mimeType
71 70
      */
72
-    public function __construct($mimeType)
73
-    {
71
+    public function __construct($mimeType) {
74 72
         if (!is_array($mimeType)) {
75 73
             $mimeType = [$mimeType];
76 74
         }
Please login to merge, or discard this patch.