Completed
Push — master ( b189c7...009e8b )
by François
05:46 queued 03:32
created
src/Cache/Memcache.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
 use Monolog\Formatter\LogstashFormatter;
15 15
 use Monolog\Handler\StreamHandler;
16 16
 use Monolog\Logger;
17
-
18 17
 use Bouncer\Identity;
19 18
 use Bouncer\Request;
20 19
 
Please login to merge, or discard this patch.
src/Cache/Redis.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
 use Monolog\Formatter\LogstashFormatter;
15 15
 use Monolog\Handler\StreamHandler;
16 16
 use Monolog\Logger;
17
-
18 17
 use Bouncer\Identity;
19 18
 use Bouncer\Request;
20 19
 
Please login to merge, or discard this patch.
src/Bouncer.php 1 patch
Doc Comments   +10 added lines patch added patch discarded remove patch
@@ -135,6 +135,7 @@  discard block
 block discarded – undo
135 135
 
136 136
     /**
137 137
      * @throw Exception
138
+     * @param string $message
138 139
      */
139 140
     public function error($message)
140 141
     {
@@ -404,6 +405,11 @@  discard block
 block discarded – undo
404 405
      *
405 406
      * @return array|object
406 407
      */
408
+
409
+    /**
410
+     * @param string $type
411
+     * @param Identity $value
412
+     */
407 413
     protected function processAnalyzers($type, $value)
408 414
     {
409 415
         if (isset($this->analyzers[$type])) {
@@ -545,6 +551,10 @@  discard block
 block discarded – undo
545 551
         exit;
546 552
     }
547 553
 
554
+    /**
555
+     * @param string $code
556
+     * @param string $message
557
+     */
548 558
     public static function responseStatus($code, $message)
549 559
     {
550 560
         if (function_exists('http_response_code')) {
Please login to merge, or discard this patch.
src/Resource.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -44,6 +44,9 @@
 block discarded – undo
44 44
         return isset($this->$key);
45 45
     }
46 46
 
47
+    /**
48
+     * @param string $name
49
+     */
47 50
     public function getAttribute($name)
48 51
     {
49 52
         if (isset($this->attributes[$name])) {
Please login to merge, or discard this patch.