Completed
Push — master ( f43027...ed76a1 )
by Antonio Carlos
08:33
created
src/Support/Cache.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -99,6 +99,9 @@
 block discarded – undo
99 99
         ];
100 100
     }
101 101
 
102
+    /**
103
+     * @param string|null $identifier
104
+     */
102 105
     public function makeCacheKey($attributes, $keys, $identifier)
103 106
     {
104 107
         $attributes = $this->extractAttributes($attributes);
Please login to merge, or discard this patch.
src/Tracker.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -202,6 +202,9 @@
 block discarded – undo
202 202
         return $this->dataRepositoryManager->getRoutePathId($this->route, $this->request);
203 203
     }
204 204
 
205
+    /**
206
+     * @param string $item
207
+     */
205 208
     private function logUntrackable($item)
206 209
     {
207 210
         if ($this->config->get('log_untrackable_sessions') && !isset($this->loggedItems[$item])) {
Please login to merge, or discard this patch.
src/Vendor/Laravel/Artisan/Base.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
     /**
19 19
      * Display all messages.
20 20
      *
21
-     * @param $type
21
+     * @param string $type
22 22
      * @param $messages
23 23
      */
24 24
     public function displayMessages($type, $messages)
Please login to merge, or discard this patch.
src/Vendor/Laravel/ServiceProvider.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
     /**
68 68
      * Bootstrap the application events.
69 69
      *
70
-     * @return void
70
+     * @return false|null
71 71
      */
72 72
     public function boot()
73 73
     {
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
     /**
92 92
      * Check if the service provider is full booted.
93 93
      *
94
-     * @return void
94
+     * @return boolean
95 95
      */
96 96
     public function isFullyBooted()
97 97
     {
Please login to merge, or discard this patch.