Completed
Push — 7.x-1.x ( 10805a...b17f37 )
by Brian
09:25 queued 02:24
created
includes/OPCache/OPCache.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -159,6 +159,9 @@
 block discarded – undo
159 159
     }
160 160
   }
161 161
 
162
+  /**
163
+   * @param integer $status
164
+   */
162 165
   private function logResponse($server, $status, $params) {
163 166
     switch ($status) {
164 167
       case 200:
Please login to merge, or discard this patch.
includes/OPCache/OPCacheConfiguration.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -87,6 +87,9 @@  discard block
 block discarded – undo
87 87
     );
88 88
   }
89 89
 
90
+  /**
91
+   * @param string $directive
92
+   */
90 93
   private function recommendedDirectiveSetting($directive) {
91 94
     $setting = $this->getDirective($directive);
92 95
 
@@ -101,6 +104,9 @@  discard block
 block discarded – undo
101 104
     }
102 105
   }
103 106
 
107
+  /**
108
+   * @param string $directive
109
+   */
104 110
   private function requiredDirectiveSetting($directive) {
105 111
     $setting = $this->getDirective($directive);
106 112
 
Please login to merge, or discard this patch.
opcache.module 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -6,8 +6,6 @@
 block discarded – undo
6 6
  */
7 7
 
8 8
 use OPCache\OPCache;
9
-use OPCache\OPCacheConfiguration;
10
-use OPCache\OPCacheStatus;
11 9
 
12 10
 /**
13 11
  * Implements hook_flush_caches().
Please login to merge, or discard this patch.