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 ( a382bd...b35cf7 )
by Omar El
03:35
created
app/controllers/AdminController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
81 81
     /**
82 82
      * view a user
83 83
      *
84
-     * @param integer|string $userId
84
+     * @param integer $userId
85 85
      */
86 86
     public function viewUser($userId = 0){
87 87
 
Please login to merge, or discard this patch.
app/controllers/PostsController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
     /**
57 57
      * view a post
58 58
      *
59
-     * @param integer|string $postId
59
+     * @param integer $postId
60 60
      */
61 61
     public function view($postId = 0){
62 62
 
Please login to merge, or discard this patch.
app/core/Config.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
     /**
21 21
      * Gets a configuration value
22 22
      *
23
-     * @param $key string
23
+     * @param string $key string
24 24
      * @return string|null
25 25
      * @throws Exception if configuration file doesn't exist
26 26
      */
Please login to merge, or discard this patch.
app/core/Cookie.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
      *
40 40
      * @access public
41 41
      * @static static method
42
-     * @return string   User ID
42
+     * @return integer   User ID
43 43
      */
44 44
     public static function getUserId(){
45 45
         return (int)self::$userId;
Please login to merge, or discard this patch.
app/core/Request.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
       * count fields in $this->data and optionally exclude some fields
75 75
       *
76 76
       * @param  array   $exclude
77
-      * @return mixed
77
+      * @return integer
78 78
       */
79 79
      public function countData(array $exclude = []){
80 80
          $count = count($this->data);
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
       * safer and better access to $this->data
91 91
       *
92 92
       * @param  string   $key
93
-      * @return mixed
93
+      * @return string
94 94
       */
95 95
      public function data($key){
96 96
          return array_key_exists($key, $this->data)? $this->data[$key]: null;
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
       * safer and better access to $this->query
101 101
       *
102 102
       * @param  string   $key
103
-      * @return mixed
103
+      * @return string
104 104
       */
105 105
      public function query($key){
106 106
          return array_key_exists($key, $this->query)? $this->query[$key]: null;
Please login to merge, or discard this patch.
app/core/Response.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -213,7 +213,7 @@
 block discarded – undo
213 213
      * Returns the mime type definition for an alias
214 214
      *
215 215
      * @param string $key
216
-     * @return mixed
216
+     * @return string
217 217
      */
218 218
     private function getMimeType($key){
219 219
 
Please login to merge, or discard this patch.
app/models/Pagination.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
80 80
      * Get number of total pages.
81 81
      *
82 82
      * @access public
83
-     * @return integer
83
+     * @return double
84 84
      */
85 85
     public function totalPages() {
86 86
         return ceil($this->totalCount/$this->perPage);
Please login to merge, or discard this patch.
app/models/Permission.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@
 block discarded – undo
82 82
      * @param  string  $role
83 83
      * @param  string  $resource
84 84
      * @param  mixed   $actions
85
-     * @param  mixed   $conditions
85
+     * @param  string   $conditions
86 86
      */
87 87
     public static function allow($role, $resource, $actions = "*", $conditions = []){
88 88
 
Please login to merge, or discard this patch.
app/models/Uploader.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
      * upload profile picture
58 58
      *
59 59
      * @param  array   $file
60
-     * @param  mixed   $id random id used in creating filename
60
+     * @param  integer   $id random id used in creating filename
61 61
      * @return mixed   false in case of failure, otherwise array of file created
62 62
      *
63 63
      */
@@ -302,7 +302,7 @@  discard block
 block discarded – undo
302 302
      * Because their values aren't secure and can be easily be spoofed.
303 303
      *
304 304
      * @param   array  $file
305
-     * @return  mixed  false if failed, string otherwise
305
+     * @return  string  false if failed, string otherwise
306 306
      * @throws Exception if finfo_open() method doesn't exists
307 307
      *
308 308
      */
Please login to merge, or discard this patch.